/* Landing Page Styles - Inspired by Luxury Event Design */

/* Navigation */
.main-nav {
    position: static;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 196, 162, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0;
    white-space: nowrap;
    pointer-events: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-menu-left {
    display: flex;
    gap: 30px;
    z-index: 10;
}

.nav-menu-right {
    display: flex;
    gap: 30px;
    z-index: 10;
}

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

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

.nav-portal {
    background: var(--primary-green) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease !important;
}

.nav-portal:hover {
    background: var(--primary-green-dark) !important;
    transform: translateY(-2px);
}

.nav-portal::after {
    display: none !important;
}

.nav-instagram {
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--primary-green) !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
    border-radius: 50%;
    margin-right: -15px !important;
}

.nav-instagram:hover {
    color: var(--primary-green-dark) !important;
    background: rgba(168, 196, 162, 0.1);
    transform: scale(1.1);
}

.nav-instagram::after {
    display: none !important;
}

.nav-instagram svg {
    display: block;
}

.nav-tiktok {
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--primary-green) !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
    border-radius: 50%;
}

.nav-tiktok:hover {
    color: var(--primary-green-dark) !important;
    background: rgba(168, 196, 162, 0.1);
    transform: scale(1.1);
}

.nav-tiktok::after {
    display: none !important;
}

.nav-tiktok svg {
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 10;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Carousel - Seamless Infinite Scroll */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    width: fit-content;
    animation: scroll-carousel 10s linear infinite;
    will-change: transform;
}

.carousel-slide {
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.carousel-slide img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-scroll span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: white;
    margin: 0 auto;
    animation: scroll 2s infinite;
}

.enquiry-btn-wrapper {
    position: absolute;
    bottom: 80px;
    right: 80px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
}

.enquiry-btn {
    background: var(--primary-green);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.enquiry-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 196, 162, 0.4);
}

/* Testimonial Section */
.testimonial-section {
    padding: 120px 0;
    background: #f9f9f9;
    position: relative;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    touch-action: pan-y;
}

.testimonial-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    min-width: 100%;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.testimonial-content {
    text-align: center;
    padding: 0 60px;
    box-sizing: border-box;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0 0 30px 0;
    font-style: italic;
    font-weight: 400;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    width: 100%;
    max-width: 100%;
}

.testimonial-content cite {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 600;
    font-style: normal;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Testimonial Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--primary-green);
    color: white;
}

.testimonial-prev {
    left: -60px;
}

.testimonial-next {
    right: -60px;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary-green);
    width: 30px;
    border-radius: 6px;
}

.testimonial-dot:hover {
    background: var(--primary-green);
    opacity: 0.7;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.btn-about {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 196, 162, 0.3);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: #f9f9f9;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 500px;
}

.service-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-overlay p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.service-btn {
    background: white;
    color: var(--text-primary);
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.social-links a.social-link svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: block;
}

.social-links a.social-link span {
    line-height: 1;
    display: block;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Contact Form */
.contact-form {
    background: #f9f9f9;
    padding: 50px;
    border-radius: 15px;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.submit-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo p {
    font-style: italic;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-green-light);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        height: 30px;
    }
    50% {
        opacity: 0.5;
        height: 20px;
    }
    100% {
        opacity: 1;
        height: 30px;
    }
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .about-grid,
    .contact-grid {
        gap: 60px;
    }
    
    .services-grid {
        gap: 30px;
    }
}

@media (max-width: 968px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-menu-left,
    .nav-menu-right {
        display: none;
    }

    .nav-toggle {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .nav-logo {
        position: static;
        transform: none;
    }

    .nav-logo h1 {
        font-size: 2rem;
    }

    .hero-section {
        height: 100vh;
        margin-top: 0;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 20px;
    }

    .nav-logo h1 {
        font-size: 2rem;
    }

    .hero-section {
        height: 100vh;
        margin-top: 0;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-tagline {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
    
    .enquiry-btn-wrapper {
        bottom: 40px;
        right: 20px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-prev {
        left: 10px;
    }

    .testimonial-next {
        right: 10px;
    }

    .testimonial-content {
        padding: 0 30px;
    }

    .testimonial-content blockquote {
        font-size: 1.5rem;
    }
    
    .about-content h2,
    .contact-info h2,
    .services-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-logo h1 {
        font-size: 1.8rem;
    }

    .hero-section {
        height: 100vh;
        margin-top: 0;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .testimonial-content {
        padding: 0 20px;
    }

    .testimonial-content blockquote {
        font-size: 1.3rem;
    }
    
    .about-content h2,
    .contact-info h2,
    .services-title {
        font-size: 1.8rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .enquiry-btn-wrapper {
        bottom: 20px;
        right: 15px;
    }
    
    .service-card {
        height: 400px;
    }
    
    .contact-form {
        padding: 25px;
    }
}

/* Additional enhancements */
.main-content {
    background: transparent;
    min-height: auto;
}

/* Ensure video performance */
.hero-video video {
    object-position: center center;
}

/* Loading transition improvements */
#mainContent {
    will-change: opacity;
}

.loading-screen {
    will-change: opacity;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-menu a:focus,
.enquiry-btn:focus,
.btn-about:focus,
.service-btn:focus,
.submit-btn:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}

/* Service card accessibility */
.service-card[tabindex]:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
}