/* Modern Minimalist Approach - Soft, Elegant Design */

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

:root {
    --primary-color: #D4C5B9; /* Soft taupe */
    --secondary-color: #A69080; /* Warm brown */
    --accent-color: #E8DFD8; /* Light beige */
    --dark-color: #3E3935; /* Deep brown */
    --light-color: #FAF8F6; /* Off white */
    --text-color: #5A5550;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 100%;
    display: block;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--dark-color);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                      url('https://images.pexels.com/photos/3757952/pexels-photo-3757952.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: 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: 2px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-weight: 400;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.feature h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--accent-color);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 60px;
    font-weight: 300;
}

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

.service-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-color);
    padding: 25px 25px 10px;
    font-weight: 400;
}

.service-card p {
    padding: 0 25px 25px;
    color: var(--text-color);
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 2px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: var(--primary-color);
}

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

.testimonial {
    background: white;
    padding: 40px 30px;
    border-radius: 2px;
    text-align: center;
}

.quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
}

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

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

.contact-info h2,
.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    font-weight: 400;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Form Styles */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design - Mobile First Enhancements */

/* Tablet and below */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 15px 0;
    }

    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo-img {
        height: 50px;
    }

    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav a {
        font-size: 0.85rem;
    }

    .hero {
        min-height: 70vh;
        padding: 40px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

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

    .about,
    .services,
    .gallery,
    .testimonials,
    .contact {
        padding: 80px 0;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-card img {
        height: 200px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-grid img {
        height: 200px;
    }

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

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

    .about-content h2 {
        font-size: 2.5rem;
    }
}

/* Mobile landscape and below */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-content h2 {
        font-size: 2.2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* Mobile portrait */
@media (max-width: 640px) {
    .logo-img {
        height: 45px;
        max-width: 180px;
    }

    .header {
        padding: 12px 0;
    }

    .nav {
        gap: 15px;
    }

    .nav a {
        font-size: 0.8rem;
    }

    .hero {
        min-height: 60vh;
        padding: 30px 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .about,
    .services,
    .gallery,
    .testimonials,
    .contact {
        padding: 60px 0;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-card img,
    .gallery-grid img {
        height: 250px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-image img {
        height: 300px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .quote {
        font-size: 1.1rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

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

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

    .about-content h2 {
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        padding: 20px 20px 10px;
    }

    .service-card p {
        font-size: 0.9rem;
        padding: 0 20px 20px;
    }

    .info-item h3 {
        font-size: 1.2rem;
    }

    .footer {
        padding: 30px 0;
    }
}