/* ===========================
   CSS Reset & Base Styles
   =========================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f9f7f4;
    color: #2a3a2e;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Container & Layout
   =========================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===========================
   Navigation
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(249, 247, 244, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(139, 154, 139, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leaf-icon {
    width: 24px;
    height: 24px;
    color: #6b8a6b;
}

.leaf-icon-small {
    width: 16px;
    height: 16px;
    color: #6b8a6b;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6b8a6b;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: #2a3a2e;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background-color: rgba(249, 247, 244, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(139, 154, 139, 0.2);
    display: none;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
    background-color: rgba(107, 138, 107, 0.1);
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: #6b8a6b;
    color: #f9f7f4;
}

.btn-primary:hover {
    background-color: #5a7a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 138, 107, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(139, 154, 139, 0.3);
    color: #2a3a2e;
}

.btn-outline:hover {
    background-color: rgba(107, 138, 107, 0.1);
    border-color: #6b8a6b;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 138, 107, 0.05), rgba(119, 163, 163, 0.05), rgba(217, 200, 178, 0.1));
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 10rem;
        padding-bottom: 8rem;
    }
    
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(107, 138, 107, 0.1);
    color: #6b8a6b;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.text-primary {
    color: #6b8a6b;
}

.hero-description {
    font-size: 1.25rem;
    color: #5a6a5a;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    aspect-ratio: 1;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    object-fit: cover;
}

.hero-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(60px);
}

.hero-blob-1 {
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background-color: rgba(119, 163, 163, 0.2);
}

.hero-blob-2 {
    top: -1.5rem;
    right: -1.5rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(107, 138, 107, 0.2);
}

/* ===========================
   Quote Section
   =========================== */

.quote-section {
    padding: 4rem 0;
    background-color: rgba(107, 138, 107, 0.05);
}

.quote-text {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(42, 58, 46, 0.9);
    line-height: 1.75;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 1.875rem;
    }
}

/* ===========================
   About Section
   =========================== */

.about-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .about-section {
        padding: 8rem 0;
    }
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image {
    position: relative;
    order: 2;
}

@media (min-width: 768px) {
    .about-image {
        order: 1;
    }
}

.about-image img {
    aspect-ratio: 4/5;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
    width: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    order: 1;
}

@media (min-width: 768px) {
    .about-content {
        order: 2;
    }
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background-color: rgba(119, 163, 163, 0.1);
    color: #77a3a3;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.about-text {
    font-size: 1.125rem;
    color: #5a6a5a;
    line-height: 1.75;
}

.about-quote {
    border-left: 4px solid #6b8a6b;
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-style: italic;
    font-size: 1.125rem;
}

/* ===========================
   Vision Section
   =========================== */

.vision-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(217, 200, 178, 0.1), #f9f7f4);
}

@media (min-width: 768px) {
    .vision-section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title-center {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #5a6a5a;
}

.vision-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .vision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vision-card {
    background-color: rgba(244, 242, 239, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(139, 154, 139, 0.5);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.vision-card:hover {
    border-color: rgba(107, 138, 107, 0.5);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.vision-card-content {
    padding: 1.5rem;
}

.vision-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.vision-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.vision-text {
    flex: 1;
}

.vision-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.vision-description {
    font-size: 0.875rem;
    color: #5a6a5a;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.vision-benefit {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(139, 154, 139, 0.5);
}

.benefit-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b8a6b;
}

.benefit-text {
    font-size: 0.875rem;
    color: #5a6a5a;
    margin-top: 0.25rem;
}

/* ===========================
   Locations Section
   =========================== */

.locations-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .locations-section {
        padding: 8rem 0;
    }
}

.locations-grid {
    display: grid;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-card {
    overflow: hidden;
    border: 1px solid rgba(139, 154, 139, 0.5);
    border-radius: 0.75rem;
    transition: box-shadow 0.3s ease;
}

.location-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
}

.location-card-bg {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.location-bg-1 {
    background: linear-gradient(135deg, rgba(107, 138, 107, 0.2), rgba(119, 163, 163, 0.2));
}

.location-bg-2 {
    background: linear-gradient(135deg, rgba(119, 163, 163, 0.2), rgba(217, 200, 178, 0.3));
}

.location-content {
    text-align: center;
}

.location-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.location-description {
    color: #5a6a5a;
}

.locations-note {
    text-align: center;
    margin-top: 3rem;
}

.locations-note p {
    font-size: 1.125rem;
    color: #5a6a5a;
    font-style: italic;
}

/* ===========================
   Join Section
   =========================== */

.join-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(107, 138, 107, 0.1), rgba(119, 163, 163, 0.05), rgba(217, 200, 178, 0.1));
}

.join-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.join-description {
    font-size: 1.25rem;
    color: #5a6a5a;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.join-statements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.join-statements p {
    font-size: 1.125rem;
    font-weight: 500;
}

.join-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #6b8a6b;
    padding-top: 1.5rem;
}

/* ===========================
   Contact Section
   =========================== */

.contact-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 8rem 0;
    }
}

.contact-wrapper {
    max-width: 56rem;
    margin: 0 auto;
}

.contact-card {
    border: 1px solid rgba(139, 154, 139, 0.5);
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
    padding: 2rem;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 3rem;
    }
}

.contact-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139, 154, 139, 0.5);
    margin-bottom: 2rem;
}

.contact-name {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-role {
    color: #5a6a5a;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 0.875rem;
    color: #5a6a5a;
    margin-top: 0.5rem;
}

.contact-location {
    font-size: 0.875rem;
    color: #5a6a5a;
    margin-top: 0.25rem;
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(119, 163, 163, 0.1);
}

.contact-item-full {
    grid-column: 1 / -1;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.contact-icon-email {
    background-color: rgba(107, 138, 107, 0.1);
    color: #6b8a6b;
}

.contact-item:hover .contact-icon-email {
    background-color: rgba(107, 138, 107, 0.2);
}

.contact-icon-phone {
    background-color: rgba(119, 163, 163, 0.1);
    color: #77a3a3;
}

.contact-item:hover .contact-icon-phone {
    background-color: rgba(119, 163, 163, 0.2);
}

.contact-icon-instagram {
    background-color: rgba(217, 200, 178, 0.5);
    color: #2a3a2e;
}

.contact-item:hover .contact-icon-instagram {
    background-color: rgba(217, 200, 178, 0.7);
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-label {
    font-size: 0.875rem;
    color: #5a6a5a;
}

.contact-value {
    font-weight: 500;
}

/* ===========================
   Footer
   =========================== */

.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(139, 154, 139, 0.2);
    background-color: rgba(244, 242, 239, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo span {
    font-weight: 500;
}

.footer-text {
    font-size: 0.875rem;
    color: #5a6a5a;
    text-align: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    color: #5a6a5a;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #6b8a6b;
}
