/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #111214;
    --secondary-black: #1c1e21;
    --accent-gray: #26282d;
    --white: #ffffff;
    --off-white: #f1f1f1;
    --gradient-start: #bd03c9;
    --gradient-end: #0090d8;
    --red: #dc143c;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.gradient-text {
    color: var(--gradient-end);
    display: inline-block;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .gradient-text {
        background-image: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 18, 20, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--primary-black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) saturate(1.1);
    opacity: 0.55;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(17, 18, 20, 0.92) 0%, rgba(28, 30, 33, 0.7) 65%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo img {
    max-width: 350px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: var(--off-white);
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary {
    padding: 16px 48px;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gradient-end);
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 144, 216, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: var(--white);
    border-color: var(--gradient-start);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(189, 3, 201, 0.5), 0 5px 15px rgba(0, 144, 216, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 100px 0;
    background: var(--secondary-black);
}

.about-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--off-white);
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--accent-gray);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 144, 216, 0.4);
    box-shadow: 0 10px 30px rgba(0, 144, 216, 0.3);
}

.info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-card p {
    margin: 5px 0;
}

.info-card a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--gold);
}

.small-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 100px 0;
    background: var(--primary-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(189, 3, 201, 0.88), rgba(0, 144, 216, 0.88));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-cta {
    margin-top: 50px;
    text-align: center;
}

/* ===================================
   Policies Section
   =================================== */
.policies {
    padding: 100px 0;
    background: var(--secondary-black);
}

.policies-content {
    max-width: 900px;
    margin: 0 auto;
}

.policies-list {
    list-style: none;
    margin-bottom: 60px;
}

.policies-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    margin-bottom: 20px;
    background: var(--accent-gray);
    border-left: 4px solid var(--gradient-start);
    transition: var(--transition);
}

.policies-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.policy-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.policy-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.policy-text p {
    color: var(--off-white);
}

.policies-logo {
    text-align: center;
    opacity: 0.3;
}

.policies-logo img {
    max-width: 150px;
}

/* ===================================
   Instagram Section
   =================================== */
.instagram-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.instagram-content {
    text-align: center;
}

.instagram-handle {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.instagram-handle a {
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.instagram-handle a:hover {
    opacity: 0.85;
}

.instagram-cta {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gradient-end);
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 144, 216, 0.3);
}

.btn-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-instagram:hover::before {
    left: 0;
}

.btn-instagram:hover {
    color: var(--white);
    border-color: var(--gradient-start);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(189, 3, 201, 0.5), 0 5px 15px rgba(0, 144, 216, 0.3);
}

.btn-instagram svg {
    flex-shrink: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 80px 0;
    background: var(--secondary-black);
    text-align: center;
}

.contact-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-content p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-content a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.contact-content a:hover {
    color: var(--gradient-end);
}

.social-links {
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--accent-gray);
    border: 2px solid transparent;
    transition: var(--transition);
    font-weight: 600;
}

.social-link:hover {
    border-color: var(--gradient-end);
    background: transparent;
}

/* ===================================
   Footer
   =================================== */
.footer {
    padding: 30px 0;
    background: var(--primary-black);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--gradient-end);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        opacity: 0;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        left: auto;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: right 0.3s ease-in-out;
        padding: 30px 0;
        transform: translateX(0);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .policies-list li {
        flex-direction: column;
        text-align: center;
    }

    .close-lightbox {
        right: 20px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 12px 35px;
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about, .gallery, .policies, .instagram-section {
        padding: 60px 0;
    }
}

