/* =============================================
   Atelier Home India - Custom Styles
   Design Philosophy: Sophisticated Minimalism with Luxury Accents
   ============================================= */

:root {
    /* Color Palette */
    --forest-green: #2d5a4a;
    --dark-forest-green: #1f4035;
    --cream: #f5f3f0;
    --charcoal: #3a3a3a;
    --soft-gray: #e8e6e3;
    --gold: #c9a961;
    --light-gray: #8a8a8a;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

/* =============================================
   Global Styles
   ============================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
}

p {
    line-height: 1.8;
}

/* =============================================
   Utility Classes
   ============================================= */

.bg-cream {
    background-color: var(--cream);
}

.bg-forest-green {
    background-color: var(--forest-green);
}

.bg-dark-forest-green {
    background-color: var(--dark-forest-green);
}

.text-forest-green {
    color: var(--forest-green);
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--light-gray);
}

.btn-forest-green {
    background-color: var(--forest-green);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-forest-green:hover {
    background-color: var(--dark-forest-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 74, 0.3);
}

.btn-forest-green:active {
    transform: translateY(0);
}

/* =============================================
   Navigation
   ============================================= */

.navbar {
    background-color: white !important;
    border-bottom: 1px solid var(--soft-gray);
    margin-top: 0;
}

.navbar-brand {
    color: var(--forest-green) !important;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--charcoal) !important;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--forest-green) !important;
}

/* =============================================
   Hero Section
   ============================================= */

.hero-section {
    margin-top: 60px;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.hero-image-col {
    min-height: 400px;
}

@media (max-width: 991.98px) {
    .hero-image-col {
        min-height: 300px;
    }
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

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

.hero-content p {
    color: var(--charcoal);
}

/* =============================================
   Divider Line
   ============================================= */

.divider-line {
    height: 4px;
    background: linear-gradient(to right, var(--forest-green), var(--gold), var(--forest-green));
    margin: 0;
}

/* =============================================
   About Section
   ============================================= */

.about-section {
    padding: 80px 0;
}

.about-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.about-image-wrapper img {
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

/* =============================================
   Why Us Section
   ============================================= */

.why-us-section {
    padding: 80px 0;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid var(--soft-gray);
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(45, 90, 74, 0.15) !important;
    transform: translateY(-4px);
}

.feature-icon {
    color: var(--gold);
    min-width: 40px;
    text-align: center;
}

.feature-card h5 {
    color: var(--forest-green);
}

/* =============================================
   Services Section
   ============================================= */

.services-section {
    padding: 80px 0;
}

.services-image-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.services-image-wrapper img {
    transition: transform 0.3s ease;
}

.services-image-wrapper:hover img {
    transform: scale(1.02);
}

.service-item {
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.service-item:hover {
    padding-left: 2rem;
    border-left-color: var(--forest-green);
}

.service-item h5 {
    color: var(--forest-green);
    font-size: 1.1rem;
}

.service-item p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* =============================================
   Projects Section
   ============================================= */

.projects-section {
    padding: 80px 0;
}

.project-card {
    border: 1px solid var(--soft-gray);
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 24px rgba(45, 90, 74, 0.15) !important;
    transform: translateY(-4px);
}

.project-card h4 {
    color: var(--forest-green);
}

.project-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.badge {
    background-color: var(--forest-green);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.badge:hover {
    background-color: var(--dark-forest-green);
}

/* =============================================
   Contact Section
   ============================================= */

.contact-section {
    padding: 80px 0;
    background-color: var(--forest-green);
}

.contact-info {
    background-color: var(--dark-forest-green);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: left;
}

.contact-info h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: white;
}

.contact-info p.fw-semibold {
    color: white;
    font-weight: 600;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
    text-decoration: underline;
}

.contact-section h2 {
    color: white;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================
   Footer
   ============================================= */

footer {
    background-color: var(--dark-forest-green);
    border-top: 1px solid var(--forest-green);
    padding: 2rem 0;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   Responsive Design
   ============================================= */

@media (max-width: 991.98px) {
    .about-section,
    .why-us-section,
    .services-section,
    .projects-section,
    .contact-section {
        padding: 60px 0;
    }

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

    .display-5 {
        font-size: 2rem;
    }

    .container-lg {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
        margin-top: 56px;
    }

    .hero-image-col {
        min-height: 250px;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .feature-card {
        margin-bottom: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-info h4 {
        font-size: 1.25rem;
    }
}

/* =============================================
   Animations
   ============================================= */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions for all interactive elements */
a, button, .nav-link {
    transition: all 0.3s ease;
}

/* =============================================
   Print Styles
   ============================================= */

@media print {
    .navbar,
    footer {
        display: none;
    }
}
