/* =========================================
   Aneri Marquee - Premium Vibrant Styles
   ========================================= */

:root {
    /* Colors - Utsav Premium Marquees with Blue */
    --clr-background: #ffffff;
    --clr-surface: #f9f9f9;
    --clr-surface-alt: #f3f3f4;
    --clr-text-main: #1a1c1c;
    --clr-text-muted: #4d4635;
    
    --clr-primary-gold: #d4af37;
    --clr-primary-gold-dark: #b8962c;
    --clr-secondary-blue: #004b87;
    --clr-tertiary-light-blue: #00a8e8;
    --clr-accent-blue: #007bff;

    /* Typography */
    --font-heading: 'Noto Serif', serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing & Sizes */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-background);
    line-height: 1.6;
    padding-bottom: 60px; /* Space for bottom nav on mobile */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--clr-secondary-blue);
    text-align: center;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text-main);
}

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

.divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--clr-secondary-blue), var(--clr-primary-gold));
    margin: 0 auto 1rem;
    border-radius: 2px;
}

/* =========================================
   Buttons & Links
   ========================================= */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--clr-primary-gold), var(--clr-primary-gold-dark));
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    min-height: 44px; /* Touch target */
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-primary-outline {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--clr-primary-gold);
    color: var(--clr-primary-gold);
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-primary-outline:hover {
    background-color: var(--clr-primary-gold);
    color: #ffffff;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    min-height: 44px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(220, 39, 67, 0.4);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.6);
}

/* =========================================
   Top App Bar
   ========================================= */
.top-app-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--clr-secondary-blue);
    letter-spacing: 1px;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.desktop-nav a {
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: var(--transition-fast);
}

.desktop-nav a:hover {
    color: var(--clr-primary-gold);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/wix_image_0.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 75, 135, 0.4); /* Deep blue tint */
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    margin-top: 60px; /* offset for top bar */
}

.hero-content p {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================
   Services Section
   ========================================= */
:root {
    --clr-beige: #F8F5EE;
}

.services {
    padding: 5rem 0;
    background-color: var(--clr-beige);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--clr-primary-gold);
}

.card-image {
    height: 200px;
    background-color: #ddd; /* placeholder */
}

.bg-placeholder-1 { background: url('assets/wix_image_3.jpg') center/cover; }
.bg-placeholder-2 { background: url('assets/wix_image_2.jpg') center/cover; }
.bg-placeholder-3 { background: url('assets/gallery_image_0.jpg') center/cover; }

.card-content {
    padding: 1.5rem;
}

.card-content p {
    color: var(--clr-text-muted);
}

/* =========================================
   About Section
   ========================================= */
.about {
    padding: 5rem 0;
    background-color: var(--clr-background);
}

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

.about-content p {
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
}

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

.rounded-shadow {
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* =========================================
   Gallery Section (Horizontal Scroll)
   ========================================= */
.gallery-section {
    padding: 5rem 0;
    background-color: var(--clr-surface-alt);
}

.gallery-header {
    margin-bottom: 2rem;
}

.gallery-track-container {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.gallery-track-container::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    padding: 0 5vw;
    width: max-content;
}

.gallery-slide {
    width: 80vw;
    max-width: 900px;
    height: 60vh;
    max-height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
    padding: 5rem 0;
    background-color: var(--clr-surface-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--clr-secondary-blue);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-weight: 600;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.contact-link i {
    font-size: 1.5rem;
    color: var(--clr-primary-gold);
}

.contact-link.whatsapp-link i { color: #25D366; }
.contact-link.instagram-link i { color: #E1306C; }

.contact-link:hover {
    transform: translateX(5px);
    border-color: var(--clr-primary-gold);
    color: var(--clr-secondary-blue);
}

.map-placeholder {
    height: 250px;
    background: #e0e0e0;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
}

.map-overlay {
    text-align: center;
    color: var(--clr-text-muted);
}

.map-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--clr-secondary-blue);
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--clr-primary-gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-submit {
    width: 100%;
    font-size: 1.1rem;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--clr-text-main);
    color: #ffffff;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-primary-gold);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a:hover {
    color: var(--clr-tertiary-light-blue);
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

/* =========================================
   Bottom Nav Bar (Mobile)
   ========================================= */
.bottom-nav-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    border-top: 1px solid #eee;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--clr-text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem;
    min-width: 64px; /* Accessible touch target */
}

.nav-item i {
    font-size: 1.25rem;
}

.nav-item.nav-whatsapp {
    color: #25D366;
}

/* =========================================
   Media Queries
   ========================================= */
@media (min-width: 768px) {
    body {
        padding-bottom: 0; /* Remove bottom space on desktop */
    }
    
    .bottom-nav-bar {
        display: none; /* Hide mobile nav */
    }

    .desktop-nav {
        display: flex;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* =========================================
   Animations (On Load & Scroll)
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

