/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4ddde0;
    --secondary-color: #d269e6;
    --accent-color: #ff3131;
    --highlight-color: #ffd700;
    --dark-bg: rgba(0, 0, 0, 0.7);
    --card-bg: rgba(0, 0, 0, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
    --input-bg: rgba(255, 255, 255, 0.1);
    --success-bg: rgba(77, 221, 224, 0.2);
    --error-bg: rgba(255, 49, 49, 0.2);
    --transition: all 0.3s ease;
}

/* Background components */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    filter: blur(5px) brightness(0.4);
    object-fit: cover;
}

.static-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('concert-background.jpg');
    background-size: cover;
    background-position: center;
}

/* Base styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), #52bdfb, var(--secondary-color), var(--accent-color), var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #52bdfb, var(--secondary-color), var(--accent-color), var(--highlight-color));
    border-radius: 2px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact layout */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: 0 15px 40px rgba(77, 221, 224, 0.2);
    transform: translateY(-5px);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    transform: rotate(15deg);
}

.info-text {
    flex: 1;
}

.info-text h3 {
    margin-bottom: 0.5rem;
    color: var(--highlight-color);
}

.info-text a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Form styling */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--input-bg);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(210, 105, 230, 0.3);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

button:hover::before {
    left: 100%;
    transition: 0.7s;
}

/* Social media section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.social-link:hover {
    color: white;
    transform: translateY(-5px);
}

.social-link:hover::before {
    opacity: 0.3;
    transform: scale(1.5);
}

.social-link svg {
    position: relative;
    z-index: 1;
}

/* Message states */
.success-message,
.error-message {
    display: none;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.5s ease-in;
}

.success-message {
    background-color: var(--success-bg);
    border: 1px solid var(--primary-color);
}

.error-message {
    background-color: var(--error-bg);
    border: 1px solid var(--accent-color);
}

.visible {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        order: -1;
    }

    .container {
        padding: 1rem;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    .circle-outer,
    .circle-middle,
    .circle-inner {
        animation: none;
    }

    button::before {
        display: none;
    }

    .social-link::before {
        display: none;
    }

    * {
        transition: none !important;
    }
}


@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .contact-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
    }

    .contact-info {
        order: -1;
    }

    .info-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .info-icon {
        margin-right: 1rem;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
        padding: 0 15px;
    }

    input,
    textarea {
        font-size: 16px;
        /* Prevents iOS zoom on focus */
    }

    button {
        font-size: 1rem;
    }
}

/* Small Mobile Specific Adjustments */
@media (max-width: 480px) {
    .contact-content {
        margin-top: 1rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .social-links {
        flex-direction: row;
    }
}