/* Base resets and fonts */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 120%;
}
html, body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #33563b;
    background-color: #f6eede;
}
a {
    color: #be8e82;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header & navigation */
.site-header {
    background: #f6eede;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 4px rgba(0,0,0,0.1);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #3f7341;
    text-decoration: none;
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.logo img {
    height: 50px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
}
.logo-text {
    margin-left: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #334756;
    vertical-align: middle;
    display: inline-block;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.main-nav a {
    text-decoration: none;
    color: #be8e82;
    font-weight: 400;
}
.main-nav a:hover {
    color: #C73E1D;
}
.nav-toggle {
    background: none;
    border: none;
    display: none;
    cursor: pointer;
}
.nav-toggle .hamburger {
    width: 24px;
    height: 2px;
    background: #334756;
    display: block;
    position: relative;
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: '';
    width: 24px;
    height: 2px;
    background: #334756;
    position: absolute;
    left: 0;
}
.nav-toggle .hamburger::before { top: -8px; }
.nav-toggle .hamburger::after { top: 8px; }

/* Hero section */
.hero {
    height: 100vh;
    background: url('../images/tilixia-summer-sea-of-clouds-13690.gif') no-repeat center/cover;
    position: relative;
    margin-top: 60px; /* account for fixed header */
    /* Mountain Person image found here: https://pixabay.com/gifs/sea-of-clouds-mountain-smoke-cloud-13690/ */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20px;
    background: linear-gradient(to top, #fdf5e5, #fdf5e500);
    pointer-events: none;
    z-index: 1;
}
.hero-overlay {
    background: rgba(0,0,0,0.4);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero-content {
    color: #f6eede;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f6eede;
}
.hero-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.hero-content p {
    font-size: 1.25rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}
.section h2 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #3f7341;
}
.section p, .section ul {
    margin-bottom: 1.5rem;
}
.section ul {
    list-style: disc inside;
}

/* About section layout */
.about-flex {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
.about-image img {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    display: block;
}
.about-text {
    flex: 1 1 300px;
}

/* Approach section layout */
.approach-flex {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
.approach-text {
    flex: 1 1 300px;
}
.approach-image img {
    max-width: 350px;
    width: 100%;
    border-radius: 8px;
    display: block;
}
.approach-image p {
}

.quote {
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #C73E1D;
    max-width: 350px;
    width: 100%;
}

/* Conditions section layout */
.conditions-flex {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
.conditions-text {
    flex: 1 1 300px;
}
.conditions-image img {
    max-width: 350px;
    width: 100%;
    border-radius: 8px;
    display: block;
}
.conditions-image p {
}

/* Footer */
.site-footer {
    background: #33563b;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}
.site-footer a {
    color: #be8e82;
    text-decoration: underline;
}
.site-footer a:hover {
    color: #C73E1D;
}

/* Consultation button */
.btn-wrap {
    text-align: center;
    margin-top: 2rem;
}
.btn-consult {
    display: inline-block;
    background: transparent;
    color: #be8e82;
    border: 2px solid #be8e82;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-consult:hover {
    background: #C73E1D;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(255,255,255,0.95);
        width: 200px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .main-nav ul {
        flex-direction: column;
        padding: 1rem;
    }
    .nav-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* Image Links - All images from Pixabay */
/* Door with Mountains: https://pixabay.com/photos/nature-wallpaper-background-3846403/ */

/* 
Colors - From Cooler
https://coolors.co/palette/606c38-283618-fefae0-dda15e-bc6c25
https://coolors.co/palette/a6d49f-9cb380-522a27-c73e1d-c59849
https://coolors.co/palette/3c1518-69140e-a44200

Orange: #C73E1D
Light Orange: 
Green: #374A21
*/ 
