/* General Styling */
body {
    font-family: 'Neue Montreal', sans-serif;
    background-color: #F7F3EF;
    color: #1A1A1A;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
.section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4A4A4A;
    margin: 0;
}

/* Navigation */
nav {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E5E5E5;
    background-color: #F7F3EF;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #1A1A1A;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #1A1A1A;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: #1A1A1A;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #1A1A1A;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-menu-button.active .hamburger {
    background: transparent;
}

.mobile-menu-button.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-button.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

h1 {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4A4A4A;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card {
    background: #F7F3EF;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.95rem;
    margin: 0;
    color: #4A4A4A;
}

/* About Section */
.about-section {
    padding: 2rem 0;
    background-color: #F7F3EF;
}

.brand-story-container {
    margin-bottom: 1rem;
}

.brand-story {
    font-size: 1rem;
    line-height: 1.3;
    color: #1A1A1A;
    max-width: 100%;
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 1.5rem;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-vision {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mission h3,
.vision h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #1A1A1A;
}

.mission p,
.vision p {
    font-size: 0.9rem;
    color: #4A4A4A;
    margin: 0;
    line-height: 1.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.stat-item {
    text-align: center;
    background: #FFFFFF;
    padding: 0.6rem;
    border-radius: 6px;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 0.15rem 0;
    color: #1A1A1A;
}

.stat-item p {
    font-size: 0.8rem;
    margin: 0;
    color: #4A4A4A;
}

.rounded-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 3rem 0;
    background-color: #FFFFFF;
}

.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.category-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid #E5E5E5;
    border-radius: 50px;
    font-size: 0.9rem;
}

.category-btn.active,
.category-btn:hover {
    background: #1A1A1A;
    color: #F7F3EF;
    border-color: #1A1A1A;
}

.portfolio-placeholder {
    text-align: center;
    padding: 3rem 1rem;
    background: #F7F3EF;
    border-radius: 12px;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.coming-soon {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    color: #1A1A1A;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background-color: #F7F3EF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: #1A1A1A;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
}

.contact-text p,
.contact-text a,
.contact-text address {
    font-size: 0.95rem;
    margin: 0;
    color: #4A4A4A;
    line-height: 1.4;
    font-style: normal;
}

/* Call-to-Action Button */
.cta-btn {
    background-color: transparent;
    color: #1A1A1A;
    padding: 1rem 2rem;
    border: 1px solid #1A1A1A;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #1A1A1A;
    color: #F7F3EF;
}

/* Footer */
footer {
    padding: 1.5rem 0;
    background-color: #FFFFFF;
    border-top: 1px solid #E5E5E5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

/* Section Header with Back to Top */
.header-with-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.header-with-button h2 {
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #1A1A1A;
    text-decoration: none;
    border: 1px solid #1A1A1A;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #1A1A1A;
    color: #F7F3EF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-image,
    .contact-image {
        order: -1;
    }

    .rounded-image {
        max-height: 150px;
    }

    .stats-grid {
        gap: 0.5rem;
    }

    .mission-vision {
        gap: 0.5rem;
    }

    .portfolio-categories {
        flex-wrap: wrap;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #F7F3EF;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        gap: 1.5rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .back-to-top {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin: 0;
    }

    .header-with-button {
        gap: 0;
    }
    .header-with-button .back-to-top {
        margin-left: 0;
    }
}

.core-values {
    margin-top: 2rem;
}

.core-values h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.value-item {
    background: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: #1A1A1A;
}

.value-item p {
    font-size: 0.95rem;
    margin: 0;
    color: #4A4A4A;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Section Adjustments for Scroll */
#services,
#about,
#portfolio,
#contact {
    scroll-margin-top: 60px;
}