/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    /* Colors */
    --primary-bg: #FFFBF1;
    --darker-olive: #FFF2D0;
    --card-dark: #FFB2B2;
    --accent: #E36A6A;
    --accent-hover: #D05555;
    --text-main: #333333;
    --text-muted: rgba(51, 51, 51, 0.7);
    --border-color: rgba(227, 106, 106, 0.3);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --font-script: 'Pinyon Script', cursive;

    /* Spacing */
    --section-padding: 8rem 0;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.script-text {
    font-family: var(--font-script);
    color: var(--accent);
    font-size: 3.5rem;
    text-transform: lowercase;
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* =========================================
   LAYOUT & COMPONENTS
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-fluid {
    width: 100%;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--section-padding);
}

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

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower.active {
    width: 80px;
    height: 80px;
    background: rgba(232, 213, 186, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: all 0.4s cubic-bezier(0.2s, 0.8, 0.2, 1);
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary-bg);
    border-color: var(--accent);
}

.btn-sm {
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
}

/* Image Frames */
.arch-frame {
    border-radius: 1000px 1000px 0 0;
    overflow: hidden;
}

.oval-frame {
    border-radius: 50%;
    overflow: hidden;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 251, 241, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(227, 106, 106, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    position: relative;
    z-index: 102;
    color: #4A2B33;
    font-weight: 600;
}

.nav-links-desktop {
    display: none;
    gap: 2.5rem;
}

.nav-links-desktop a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #4A2B33;
    text-transform: capitalize;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-pill {
    background-color: #9c3f55;
    color: #ffffff;
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-pill:hover {
    background-color: var(--accent);
    color: #ffffff;
}

@media (min-width: 1024px) {
    .nav-links-desktop {
        display: flex;
    }

    .menu-btn {
        display: none;
    }
}

.menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 102;
    position: relative;
}

.menu-btn span {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--text-main);
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    transform: rotate(-45deg);
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-bg);
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.5s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.nav-links li {
    margin: 2rem 0;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.fullscreen-menu.active .nav-links li {
    transform: translateY(0);
    opacity: 1;
}

.fullscreen-menu.active .nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.fullscreen-menu.active .nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.fullscreen-menu.active .nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.fullscreen-menu.active .nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.fullscreen-menu.active .nav-links li:nth-child(5) {
    transition-delay: 0.5s;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

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

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-bg) 0%, rgba(43, 53, 36, 0.4) 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    /* For parallax initial state */
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
}

/* =========================================
   VISIT US (3 COLUMNS)
   ========================================= */
.visit-us {
    position: relative;
    overflow: hidden;
    padding-bottom: 4rem;
}

.script-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    color: rgba(232, 213, 186, 0.6);
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}

.visit-grid {
    display: flex;
    height: 70vh;
}

.visit-col {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.visit-col:nth-child(2) {
    margin-top: 4rem;
}

.visit-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.img-wrapper {
    height: 100%;
    overflow: hidden;
}

.visit-col:hover img {
    transform: scale(1.05);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-container {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-image {
    flex: 1;
}

.about-image .arch-frame {
    height: 700px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
    position: relative;
}

.circular-badge {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--accent);
    animation: rotate 15s linear infinite;
    z-index: 10;
}

.badge-text {
    font-size: 14px;
    letter-spacing: 3px;
    fill: currentColor;
    font-family: var(--font-body);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-text {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.phone-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-contact i {
    font-size: 2rem;
    color: var(--accent);
}

.phone-contact .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* =========================================
   VIDEO BANNER
   ========================================= */
.video-banner {
    height: 80vh;
    overflow: hidden;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--text-main);
    color: var(--primary-bg);
}

/* =========================================
   EVENTS SECTION
   ========================================= */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-img {
    width: 250px;
    height: 350px;
    margin-bottom: 2rem;
}

.event-card:nth-child(2) .event-img {
    height: 250px;
    margin-top: 50px;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.event-date,
.event-details {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.event-card .btn {
    margin-top: 1.5rem;
}

/* =========================================
   SERVICES OVERVIEW
   ========================================= */
.service-flex {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.reverse-flex .service-flex {
    flex-direction: row-reverse;
}

.service-image,
.service-content {
    flex: 1;
}

.abstract-shape {
    border-radius: 0 500px 500px 0;
    overflow: hidden;
    height: 600px;
}

.abstract-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.align-right .arch-frame {
    height: 600px;
    border-radius: 500px 500px 0 0;
}

.price-list {
    margin-top: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-info h4 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge {
    background: var(--accent);
    color: var(--primary-bg);
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

.duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
    display: block;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.feature-box {
    padding: 4rem;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-box.dark {
    background-color: var(--card-dark);
}

.feature-box.light {
    background-color: var(--accent);
    color: var(--primary-bg);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.feature-category {
    font-size: 0.8rem;
}

.feature-header i {
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* =========================================
   BOOKING SECTION
   ========================================= */
.booking-container {
    display: flex;
    gap: 6rem;
}

.booking-form-wrap {
    flex: 1;
}

.booking-image {
    flex: 1;
}

.booking-image .arch-frame {
    height: 700px;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-group i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 40px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--primary-bg);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-checkbox a {
    color: var(--accent);
    text-decoration: underline;
}

.booking-form .btn {
    width: 100%;
}

/* =========================================
   INSTAGRAM FEED
   ========================================= */
.insta-grid {
    display: flex;
    height: 250px;
    gap: 10px;
}

.insta-item {
    flex: 1;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.insta-item::after {
    content: '\EAED';
    font-family: 'remixicon';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item:hover::after {
    opacity: 1;
}

.insta-handle h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 4px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonial-container {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.testimonial-image {
    flex: 1;
}

.testimonial-image .arch-frame {
    height: 500px;
    border-radius: 500px 500px 0 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.stars {
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.quote-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.customer-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.quote-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    background: var(--text-main);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.customer-details h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.customer-details span {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.testimonial-nav {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--accent);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    cursor: pointer;
}

.faq-btn i {
    transition: transform 0.3s ease;
}

.faq-btn.active i {
    transform: rotate(90deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-content p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--darker-olive);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-muted);
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer-links li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links li i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-links a:hover {
    color: var(--accent);
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 0;
    color: var(--text-main);
    outline: none;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a:hover {
    color: var(--accent);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-container,
    .service-flex,
    .booking-container,
    .testimonial-container {
        flex-direction: column;
        gap: 4rem;
    }

    .about-image .arch-frame,
    .booking-image .arch-frame,
    .testimonial-image .arch-frame,
    .abstract-shape,
    .align-right .arch-frame {
        height: 400px;
    }

    .reverse-flex .service-flex {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .script-text {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .visit-grid {
        flex-direction: column;
        height: auto;
    }

    .visit-col {
        height: 300px;
        margin-top: 1rem !important;
    }

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

    .event-card:nth-child(2) .event-img {
        margin-top: 0;
    }

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

    .feature-box {
        height: auto;
        padding: 2rem;
    }

    .insta-grid {
        flex-wrap: wrap;
        height: auto;
    }

    .insta-item {
        min-width: 150px;
        height: 150px;
        flex: 1 1 30%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =========================================
   ANIMATION CLASSES (For GSAP)
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.mask-reveal {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.clip-reveal {
    clip-path: inset(100% 0 0 0);
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}