body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    background: #F1E9DE;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cardo', serif;
    font-weight: 700;
    margin: 0;
    color: #333333;
}

a {
    color: #AF5A4D;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #73685A;
}

/* Navigation */
/* Smaller nav bar with logo on left and nav links horizontally aligned */
.main-nav {
    background: #F1E9DE;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    padding: 0.5rem 1rem; /* Smaller vertical padding for a more compact nav */
}

.logo img {
    display: block;
    height: 60px; /* Smaller logo size for a minimal nav */
    margin-right: 2rem; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1;
    color: #AF5A4D;
    text-decoration: none;
    padding: 0.5rem 0;
}

.nav-links li a:hover {
    color: #73685A;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: #AF5A4D; 
    color: #F1E9DE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    padding-top: 10rem; /* Enough space so hero text doesn't overlap nav */
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-family: 'Cardo', serif;
}

.hero-text p {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem; /* Slightly more space before CTA */
}

/* CHANGE START: Hero CTA button styling */
.hero-cta {
    background: #F1E9DE;
    color: #AF5A4D;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
    background: #73685A;
    color: #F1E9DE;
}
/* CHANGE END */

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Cardo', serif;
    text-align: center;
    color: #333333;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    text-align: center;
}

/* Portfolio Section */
.portfolio-section {
    background: #FFF;
    color: #333333;
    text-align: center;
}

.portfolio-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.portfolio-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    background: none;
    border: 2px solid #AF5A4D;
    color: #AF5A4D;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
    background: #AF5A4D;
    color: #F1E9DE;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 0 1rem; /* Slight padding for nicer spacing on edges */
}

.portfolio-grid img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Testimonials Section */
.testimonials-section {
    background: #BFBFBD;
    color: #333333;
    text-align: center;
}

.testimonials blockquote {
    background: #F1E9DE;
    display: inline-block;
    padding: 1rem 2rem;
    margin: 1rem;
    border-radius: 8px;
    max-width: 500px;
    font-style: italic;
    position: relative;
}

.testimonials blockquote:before {
    content: "“";
    font-size: 3rem;
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    color: #AF5A4D;
}

.testimonials blockquote footer {
    text-align: right;
    font-style: normal;
    font-weight: 600;
    margin-top: 1rem;
    color: #73685A;
}

/* Instagram Section */
.instagram-section {
    background: #F1E9DE;
    text-align: center;
}

.instagram-gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.instagram-gallery img {
    width: 200px;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.btn {
    display: inline-block;
    background: #AF5A4D;
    color: #F1E9DE;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #73685A;
}

/* Contact Section */
.contact-section {
    background: #FFF;
    color: #333333;
    text-align: center;
}

.contact-section .section-content > p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    margin-bottom: 2rem;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    margin-top: 2rem;
}

.contact-section label {
    font-weight: 600;
}

.contact-section input, .contact-section textarea {
    padding: 0.5rem;
    border: 1px solid #CCC;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.contact-section button {
    background: #AF5A4D;
    color: #F1E9DE;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.contact-section button:hover {
    background: #73685A;
}

/* Footer */
.footer {
    background: #333333;
    color: #F1E9DE;
    text-align: center;
    padding: 1rem 0;
}

.footer p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-links {
        display: none; 
    }

    .main-nav.active .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: #F1E9DE;
        width: 100%;
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }
}
