:root {
    --beige: #F5EDE4;
    --beige-dark: #E8DCC8;
    --terracotta: #C87B5A;
    --brown: #4A3C31;
    --brown-light: #8B7968;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--brown);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant', serif;
    font-weight: 400;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--brown);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--brown);
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-nav {
    background: var(--terracotta);
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--brown);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--brown);
    transition: 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
    padding: 15rem 5% 10rem;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: var(--brown);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    color: var(--brown-light);
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--brown);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--brown-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.pillar {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.pillar:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.pillar h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--terracotta);
}

.pillar p {
    color: var(--brown-light);
    margin-bottom: 1.5rem;
}

.link {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link:hover {
    color: var(--brown);
}

footer {
    background: var(--brown);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--terracotta);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 12rem 5% 8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
