 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --serif: 'Forum', serif;
            --sans-serif: 'Poppins', sans-serif;
            --dark: #2a2a2a;
            --gold: #c9a96e;
            --light-bg: #f8f6f3;
        }

        body {
            font-family: var(--sans-serif);
            color: var(--dark);
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--serif);
            font-size: 28px;
            color: white;
            letter-spacing: 3px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 300;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #000000;
background: linear-gradient(0deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            color: white;
            max-width: 600px;
        }

        .hero-subtitle {
            font-size: 11px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 300;
            margin-bottom: 20px;
        }

        .hero-vertical-line {
            width: 1px;
            height: 80px;
            background: white;
            margin-bottom: 30px;
        }

        .hero h1 {
            font-family: var(--serif);
            font-size: 72px;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 30px;
        }

        .hero-btn {
            padding: 0;
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 1px;
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            font-style: italic;
            font-weight: 400;
            background: transparent;
            border: none;
            transition: all 0.3s;
        }

        .hero-btn::after {
            content: '›';
            font-size: 20px;
            font-style: normal;
            transition: transform 0.3s;
        }

        .hero-btn:hover::after {
            transform: translateX(5px);
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 25px;
            height: 1px;
            background: white;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
        }

        .scroll-indicator span {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 10px;
        }

        .scroll-line {
            width: 1px;
            height: 50px;
            background: white;
            margin: 0 auto;
        }

        /* All-in-one Section */
        .all-in-one {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 100px 60px;
            align-items: center;
            background: white;
        }

        .content-left {
            padding: 0px 0px 0 40px;
            border-left: 1px solid #C9A96E;
        }

        .section-subtitle {
            font-size: 15px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 300;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /*.section-subtitle::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }*/

        .content-left h2 {
            font-family: var(--serif);
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .content-left h3 {
            font-family: var(--serif);
            font-size: 30px;
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .content-left p {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 15px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            align-items: center;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-left: 10px;
        }

        .social-icon {
            width: 90px;
            height: 25px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            transition: opacity 0.3s;
        }

        .social-icon:hover {
            opacity: 0.7;
        }

        .social-icon img {
            width: 100%;
            height: auto;
        }

        .btn {
            padding: 0;
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            position: relative;
            font-style: italic;
            font-weight: 400;
            background: transparent;
        }

        .btn::after {
            content: '›';
            font-size: 20px;
            font-style: normal;
            transition: transform 0.3s;
        }

        .btn:hover::after {
            transform: translateX(5px);
        }

        .btn::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 25px;
            height: 1px;
            background: currentColor;
        }

        .btn-primary {
            color: var(--dark);
        }

        .btn-secondary {
            color: var(--dark);
        }

        .image-right {
            min-height: 600px;
            border-radius: 0px;
        }

        /* Accommodation Section */
        .accommodation {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            padding: 25px 60px;
            align-items: center;
            background: white;
        }

        .image-left {
            min-height: 600px;
            border-radius: 0px;
        }

        .content-right {
            padding: 0 0 0 40px;
            position: relative;
        }

        .content-right::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background: var(--gold);
        }

        .content-right .section-subtitle {
            color: var(--gold);
        }

        .content-left::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background: var(--gold);
        }

        .content-left .section-subtitle {
            color: var(--gold);
        }

        .content-right h2 {
            font-family: var(--serif);
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .content-right p {
            font-size: 14px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 15px;
        }

        .content-right .btn {
            margin-top: 0px;
        }

        /* Divider */
        .divider {
            text-align: center;
            padding: 40px 20px;
            background: white;
        }

        .divider .section-subtitle {
            justify-content: center;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .divider .section-subtitle::before {
            display: none;
        }

        .divider-line {
            width: 1px;
            height: 60px;
            background: var(--gold);
            margin: 0 auto 30px;
        }

        .divider h3 {
            font-family: var(--serif);
            font-size: 42px;
            font-weight: 400;
            color: var(--dark);
        }

        /* Complete Experience */
        .complete-experience {
            background: white;
            padding: 0px 60px 40px 60px;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 0px;
        }

        .experience-item {
            text-align: center;
        }

        .experience-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin-bottom: 25px;
        }

        .experience-item h4 {
            font-family: var(--serif);
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .experience-item p {
            font-size: 13px;
            line-height: 1.8;
            color: #666;
        }

        /* Gallery Quote */
        .gallery-quote {
            background: var(--dark);
            color: white;
            padding: 60px;
            text-align: center;
        }

        .gallery-quote p {
            font-family: var(--serif);
            font-size: 28px;
            font-weight: 400;
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Photo Gallery */
        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 200px;
            gap: 8px;
            padding: 0;
            margin-top: 8px;
        }

        .gallery-item {
            background-size: cover;
            background-position: center;
            transition: transform 0.3s;
        }

        

        /* Masonry layout - varying sizes */
        .gallery-item:nth-child(1) { 
            grid-column: span 2;
            grid-row: span 2;
            background-image: url('../images/reception.jpg'); 
        }
        
        .gallery-item:nth-child(2) { 
            grid-column: span 2;
            grid-row: span 2;
            background-image: url('../images/wedding-arch.jpg'); 
        }
        
        .gallery-item:nth-child(3) { 
            grid-column: span 2;
            grid-row: span 2;
            background-image: url('../images/duvon-farm.jpg'); 
        }
        
        .gallery-item:nth-child(4) { 
            grid-column: span 2;
            grid-row: span 2;
            background-image: url('../images/wedding-reception.jpg'); 
        }
        
        .gallery-item:nth-child(5) { 
            grid-column: span 1;
            grid-row: span 2;
            background-image: url('../images/couple.jpg'); 
        }
        
        .gallery-item:nth-child(6) { 
            grid-column: span 2;
            grid-row: span 2;
            background-image: url('../images/wedding-venue3.jpg'); 
        }
        
        .gallery-item:nth-child(7) { 
            grid-column: span 1;
            grid-row: span 2;
            background-image: url('../images/outdoor-venue.jpg'); 
        }
        
        .gallery-item:nth-child(8) { 
            grid-column: span 2;
            grid-row: span 2;
            background-image: url('../images/duvon-weddings.jpg'); 
        }
        
        .gallery-item:nth-child(9) { 
            grid-column: span 2;
            grid-row: span 2;
            background-image: url('../images/old-car-couple.jpg'); 
        }

        /* Wedding Packages */
        .wedding-packages {
            background: var(--dark);
            color: white;
            padding: 100px 60px;
            text-align: center;
        }

        .wedding-packages .section-subtitle {
            justify-content: center;
            
        }

        .wedding-packages .section-subtitle::before {
            background: white;
        }

        .wedding-packages .divider-line {
            background: white;
        }

        .wedding-packages h2 {
            font-family: var(--serif);
            font-size: 48px;
            font-weight: 400;
            margin-top: 30px;
            margin-bottom: 60px;
        }

        .package-image {
            max-width: 800px;
            margin: 0 auto;
        }

        .package-image img {
            width: 100%;
            height: auto;
        }

        .package-downloads {
            display: flex;
            justify-content: center;
            gap: 125px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .download-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            font-family: var(--serif);
        }

        .download-item span {
            font-size: 22px;
            letter-spacing: 0px;
            color: var(--gold);
            font-weight: 500;
        }

        .download-icon {
            color: var(--gold);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .download-icon:hover {
            color: white;
            transform: translateY(-3px);
        }

        /* Testimonial */
        .testimonial {
            background: white;
            padding: 100px 60px;
            text-align: center;
        }

        .testimonial .section-subtitle {
            justify-content: center;
        }

        .testimonial .section-subtitle::before {
            display: none;
        }

        .testimonial h2 {
            font-family: var(--serif);
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 30px;
        }

        .stars {
            color: var(--gold);
            font-size: 20px;
            margin-bottom: 30px;
        }

        .testimonial-text {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 14px;
            line-height: 1.8;
            color: #666;
        }

        .testimonial-author {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 30px auto 15px;
            background: url('https://i.pravatar.cc/150?img=32') center/cover;
        }

        .author-name {
            font-size: 13px;
            color: var(--dark);
            font-weight: 500;
        }

        /* Awards Section */
        .awards {
            background: url('../images/winter-package.jpg') center/cover;
            padding: 120px 60px;
            text-align: center;
            position: relative;
        }

        .awards::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .awards-content {
            position: relative;
            z-index: 10;
            color: white;
        }

        .awards-content .section-subtitle {
            justify-content: center;
            color: white;
        }

        .awards-content .section-subtitle::before {
            background: white;
        }

        .awards h2 {
            font-family: var(--serif);
            font-size: 48px;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .awards-year {
            font-size: 72px;
            font-weight: 600;
            color: var(--gold);
        }

        /* Availability */
        .availability {
            background: var(--dark);
            color: white;
            padding: 80px 60px;
        }

        .availability-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .availability .section-subtitle {
            color: white;
        }

        .availability .section-subtitle::before {
            background: white;
        }

        .availability h2 {
            font-family: var(--serif);
            font-size: 42px;
            font-weight: 400;
            margin-bottom: 40px;
        }

        .date-selector {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .date-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 15px;
            color: white;
            font-size: 13px;
            font-family: var(--sans-serif);
        }

        .date-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .btn-gold {
            background: var(--gold);
            color: white;
            border: 1px solid var(--gold);
            padding: 15px 40px;
            cursor: pointer;
        }

        .btn-gold:hover {
            background: transparent;
            color: var(--gold);
        }

        /* Footer */
        footer {
            background: var(--light);
            color: white;
            padding: 60px 60px 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-family: var(--serif);
            font-size: 28px;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .footer-about p {
            font-size: 12px;
            line-height: 1.8;
            color: #2A2A2A;
        }

        .footer-section h4 {
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-weight: 500;
            color: #2A2A2A;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: #2A2A2A;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid var(--gold);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: #2A2A2A;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #2A2A2A;
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--gold);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .all-in-one,
            .accommodation {
                grid-template-columns: 1fr;
                padding: 60px 30px;
            }

            .content-left,
            .content-right {
                padding: 0;
            }

            .content-right::before {
                display: none;
            }

            .image-right,
            .image-left {
                min-height: 300px;
                order: -1;
            }

            .experience-grid {
                grid-template-columns: 1fr;
            }

            .photo-gallery {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 150px;
            }

            .photo-gallery .gallery-item {
                grid-column: span 1 !important;
                grid-row: span 1 !important;
            }

            .date-selector {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero {
                height: 60vh;
                padding: 0 20px;
            }

            .scroll-indicator {
                display: none;
            }

            .hero-vertical-line {
                display: none;
            }

            nav {
                padding: 20px 15px;
            }

            .nav-links {
                display: flex;
                gap: 25px;
                list-style: none;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .social-icons {
                margin-left: 0;
            }

            .content-left {
                padding: 0px;
                border-left: 0px solid #C9A96E;
            }

            .content-left h2, .content-right h2 {
                font-size: 35px;
            }

            .divider h3 {
                font-size: 30px;
            }

            .complete-experience {
                background: white;
                padding: 0px 25px 40px 25px;
            }

            .gallery-item:nth-child(9) {
                display: none;
            }







        }

        .testimonial {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.section-subtitle {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.testimonial-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
    height: 300px; /* Adjust based on your content height */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.stars {
    color: #FFD700;
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.author-name {
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-container {
        padding: 0 50px;
    }
    
    .testimonial-slider {
        height: 350px; /* Adjust for mobile content */
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}

/* CSS */
.ticker-wrapper {
  overflow: hidden;
  white-space: nowrap;
  color: white;
  width: 100%;
  margin-top: 20px;
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 90s linear infinite;
}

.ticker-content {
  display: inline-block;
  padding-right: 80px;
  font-size: 18px;
  font-family: var(--sans-serif);
  font-style: italic;
  font-weight: 300;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}
