:root {
    --primary: #1a472a;
    --primary-dark: #0f2d18;
    --primary-light: #2d6b42;
    --gold: #c9a227;
    --gold-light: #e8c547;
    --cream: #f8f5f0;
    --cream-dark: #f0ebe3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --shadow: 0 4px 30px rgba(26, 71, 42, 0.1);
    --shadow-lg: 0 20px 60px rgba(26, 71, 42, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans", sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 0.75rem 5%;
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.logo-text span:last-child {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

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

.btn-contact {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-contact::after {
    display: none !important;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 71, 42, 0.3);
}

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 12% 4rem;
    position: relative;
    background:
        linear-gradient(
            135deg,
            rgba(26, 71, 42, 0.03) 0%,
            rgba(201, 162, 39, 0.03) 100%
        ),
        var(--cream);
    overflow: hidden;
}

.hero::before {
    content: "﴿";
    position: absolute;
    top: 10%;
    right: 10%;
    font-size: 30rem;
    color: rgba(201, 162, 39, 0.05);
    font-family: "Noto Sans Arabic", serif;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(26, 71, 42, 0.05) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
}

.hero-greeting {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-greeting::before {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    z-index: 1;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: 1;
}

.hero-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-decoration {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: auto !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    z-index: 10;
}

.hero-decoration * {
    pointer-events: none;
}

.hero-decoration:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(26, 71, 42, 0.2);
}

.hero-decoration-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
}

.hero-decoration-text span:first-child {
    display: block;
    font-weight: 700;
    color: var(--primary);
}

.hero-decoration-text span:last-child {
    font-size: 0.85rem;
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-light) 100%
    );
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.location {
    padding: 6rem 5%;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.location-info {
    padding: 2.5rem;
    background: var(--cream);
    border-radius: 20px;
    border-left: 5px solid var(--gold);
}

.location-info h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-item-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.location-item-text h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.location-item-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.location-map .location-map-placeholder {
    text-align: center;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.location-map-placeholder {
    color: var(--text-light);
}

.location-map-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.location-map-link {
    text-decoration: none;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

.location-map-link:hover {
    background: var(--cream-dark);
}

.location-map-link:hover .location-map-placeholder p:first-of-type {
    color: var(--primary);
}

.cta {
    padding: 6rem 5%;
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
        to bottom,
        var(--white),
        transparent
    );
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
}

footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 2rem 5% 2rem;
}

.footer-bottom {
    /* padding-top: 2rem; */
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.video-showcase {
    position: relative;
    padding: 7rem 8%;
    background: linear-gradient(
        160deg,
        var(--primary-dark) 0%,
        #0a1f10 40%,
        #0d2b16 100%
    );
    overflow: hidden;
}

.video-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 80% 50%,
            rgba(201, 162, 39, 0.08) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 40% 60% at 10% 80%,
            rgba(26, 71, 42, 0.4) 0%,
            transparent 60%
        );
    pointer-events: none;
}

.video-showcase-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold) 30%,
        var(--gold-light) 50%,
        var(--gold) 70%,
        transparent 100%
    );
}

.video-showcase-ornament {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 22rem;
    color: rgba(201, 162, 39, 0.04);
    font-family: "Noto Sans Arabic", serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.video-player-wrap {
    position: relative;
}

.video-player-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(201, 162, 39, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: #000;
}

.video-player-frame video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        transparent 50%
    );
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-overlay:hover {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.1) 60%
    );
}

.video-play-btn {
    width: 46px;
    height: 46px;
    background: rgba(201, 162, 39, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 8px rgba(201, 162, 39, 0.15),
        0 0 0 16px rgba(201, 162, 39, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
    position: relative;
    z-index: 1;
    opacity: 1;
}

.video-overlay.playing.hide-btn .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-dark);
    margin-left: 2px;
    transition: transform 0.2s ease;
}

.video-overlay:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow:
        0 0 0 10px rgba(201, 162, 39, 0.2),
        0 0 0 20px rgba(201, 162, 39, 0.08);
}

.video-overlay.playing .video-play-btn svg {
    margin-left: 0;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.video-play-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.5);
    animation: pulse-ring 2s ease-out infinite;
}

.video-overlay.playing .video-play-btn::before {
    animation: none;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

@media (max-width: 768px) {

    .video-showcase {
        padding: 0rem 0%;
    }

    .video-player-frame {
        border-radius: 0;
    }

    .video-player-frame video {
        aspect-ratio: 9 / 16;
    }

}

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

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@media (max-width: 1024px) {

    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-greeting {
        justify-content: center;
    }

    .hero-greeting::before {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

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

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 5% 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

}
