        :root {
            --gold: #FFD700;
            --red: ##D5006D;
            --dark-red: #9B0056;
            --bg-dark: #043927;
            --light-gold: #FFF8DC;
            --white: #F0F0F0;
            --black: #043927;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Times New Roman', serif;
        }
html{scroll-behavior: smooth;}
        body {
            background: var(--bg-dark);
            color: var(--white);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* === Navigation === */
        nav {
            background: linear-gradient(135deg, rgba(128, 0, 128, 0.4), rgba(75, 0, 130, 0.3));
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .logo {
            color: var(--gold);
            font-size: 2rem;
            font-weight: bold;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .logo span {
            color: var(--white);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li a {
            color: var(--white);
            text-decoration: none;
            margin-left: 2.5rem;
            font-size: 1.1rem;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links li a:hover {
            color: var(--gold);
        }

        .nav-links li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--gold);
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

        .nav-links li a:hover:after {
            width: 100%;
        }

        .burger {
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            display: none;
        }

        /* === Hero Section === */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
		background: linear-gradient(to bottom, rgba(30, 0, 30, 0.2) 0%, rgba(60, 0, 60, 0.5) 50%, rgba(60, 0, 60, 1) 80%);
            z-index: 1;
        }

        .hero-slide {
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
            height: 100%;
            opacity: 0;
            padding: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 100%;
            padding: 0 5%;
            text-align: center;
            animation: fadeIn 2s;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
        }

        .hero-content h1 span {
            color: var(--gold);
            font-style: italic;
        }

        .hero-content p {
            font-size: 1.8rem;
            margin-bottom: 3rem;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .btn {
            background: var(--gold);
            color: var(--black);
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .btn:hover {
            background: var(--light-gold);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* === Sections === */
        section {
            padding: 8rem 5%;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }


        section.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        h2 {
            text-align: center;
            font-size: 3.5rem;
            margin-bottom: 5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
        }

        h2 span {
            color: var(--gold);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: var(--red);
            bottom: -20px;
            left: 25%;
            border-radius: 2px;
        }

        /* === About Us === */
        .about-us {
            background: linear-gradient(rgba(22, 0, 0, 8), rgba(22, 0, 0, 1));
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-text {
            flex: 1;
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: justify;
        }

        .about-text p {
            margin-bottom: 2rem;
        }

        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 3px solid var(--gold);
        }

        .about-img img {
            width: 100%;
            height: auto;
            transition: transform 0.8s;
            display: block;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        /* === Gallery === */
        .gallery {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.5s;
            position: relative;
            height: 250px;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* === Conference === */
        .conference {
            background:  linear-gradient(rgba(22, 0, 0, 8), rgba(22, 0, 0, 1));
        }

        .conference-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .conference-content img {
            width: 50%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 3px solid var(--gold);
        }

        .conference-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: justify;
        }

        /* === Rooms === */
        .rooms {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .room {
            background: var(--black);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.5s;
        }

        .room:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }

        .room img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .room h3 {
            padding: 1.5rem;
            font-size: 1.5rem;
            color: var(--gold);
            text-align: center;
        }

        /* === Contact === */
        .contact {
            background: linear-gradient(rgba(22, 0, 0, 8), rgba(22, 0, 0, 1));
        }

        .contact-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--black);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid var(--gold);
        }

        .contact-form {
            display: grid;
            gap: 1.5rem;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 1rem;
            background: #333;
            border: 1px solid #444;
            border-radius: 5px;
            color: var(--white);
            font-size: 1.1rem;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 200px;
        }

        .contact-form button {
            justify-self: center;
            margin-top: 1rem;
        }

        /* === Footer === */
        footer {
            background: linear-gradient(135deg, rgba(128, 0, 128, 1), rgba(75, 0, 130, 1));
            padding: 5rem 5% 3rem;
            text-align: center;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
            text-align: left;
        }

        .footer-links h3,
        .footer-contact h3 {
            color: var(--gold);
            font-size: 1.8rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .footer-links h3:after,
        .footer-contact h3:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background: var(--gold);
            bottom: -10px;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        .footer-contact p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-contact i {
            color: var(--gold);
            font-size: 1.3rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 3rem 0;
        }

        .social-links a {
            color: var(--white);
            font-size: 2rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            color: var(--gold);
            transform: translateY(-5px);
        }

        .credits {
            margin-top: 3rem;
            font-size: 1rem;
            opacity: 0.8;
            position: relative;
            padding-top: 2rem;
        }

        .credits:before {
            content: '';
            position: absolute;
            width: 50%;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            top: 0;
            left: 25%;
        }

        /* === Mobile Responsiveness === */
        @media (max-width: 992px) {
            .about-content,
            .conference-content {
                flex-direction: column;
            }
            
            .about-img,
            .conference-content img {
                width: 100%;
                margin-top: 2rem;
            }
            
            .hero-content h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background: var(--dark-red);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .nav-links li a {
                margin-left: 0;
                font-size: 1.3rem;
            }

            .burger {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-content p {
                font-size: 1.4rem;
            }

            h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            .contact-container {
                padding: 2rem;
            }
        }