/* ============================================
   CUSTOM PROPERTIES & VARIABLES
   ============================================ */
:root {
    --forest-green: #1E3A2F;
    --olive-green: #55684D;
    --charcoal-black: #1A1A1A;
    --sand-beige: #E8E2D5;
    --adventure-orange: #E76F34;
    --coastal-blue: #4A7C8A;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal-black);
    background-color: var(--sand-beige);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(26, 26, 26, 0.8);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 16px 40px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-slow);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary {
    background-color: var(--adventure-orange);
    color: var(--sand-beige);
}

.btn-primary:hover {
    background-color: var(--forest-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--sand-beige);
    color: var(--forest-green);
    border: 2px solid var(--sand-beige);
}

.btn-secondary:hover {
    background-color: var(--forest-green);
    color: var(--sand-beige);
    border-color: var(--forest-green);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(232, 226, 213, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 58, 47, 0.1);
}

.nav-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--forest-green);
    text-decoration: none;
}

.logo-image {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(30%) sepia(50%) saturate(120%) hue-rotate(140deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--charcoal-black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--adventure-orange);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 2.5px;
    background-color: var(--forest-green);
    margin: 5px 0;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomInSlow 6s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 47, 0.4) 0%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--sand-beige);
    animation: fadeInUp 1s ease;
}

.hero-title {
    color: var(--sand-beige);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(26, 26, 26, 0.3);
    animation: slideInDown 0.8s ease;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(232, 226, 213, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s ease 0.2s both;
    text-shadow: 1px 1px 4px rgba(26, 26, 26, 0.2);
}

.hero .btn {
    animation: slideInUp 0.8s ease 0.4s both;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    background-color: var(--sand-beige);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    color: var(--forest-green);
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text p:first-of-type {
    animation: fadeInLeft 0.8s ease;
}

.about-text p:last-of-type {
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.about-image {
    animation: fadeInRight 0.8s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 120px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    color: var(--forest-green);
    margin-bottom: 30px;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--adventure-orange), var(--coastal-blue));
    margin: 0 auto;
    animation: expandWidth 0.8s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px;
    transition: var(--transition-slow);
    animation: fadeInUp 0.8s ease;
}

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

.feature-icon {
    font-size: 3.5rem;
    color: var(--adventure-orange);
    margin-bottom: 25px;
    transition: var(--transition);
    display: inline-block;
}

/* SVG icon styling */
.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: block;
    object-fit: contain;
    transition: var(--transition);
    filter: invert(41%) sepia(70%) saturate(230%) hue-rotate(10deg) brightness(100%);
}

.feature-card:hover .feature-icon {
    color: var(--coastal-blue);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--forest-green);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.7);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 120px 0;
    background-color: var(--forest-green);
    text-align: center;
    color: var(--sand-beige);
}

.cta-content h2 {
    color: var(--sand-beige);
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(232, 226, 213, 0.9);
    margin-bottom: 40px;
    animation: fadeIn 0.8s ease 0.2s both;
}

.cta-section .btn {
    animation: fadeIn 0.8s ease 0.4s both;
}

/* ============================================
   PRIVACY POLICY
   ============================================ */
.privacy-page {
    background-color: var(--sand-beige);
}

.privacy-hero {
    padding: 110px 0 70px;
    background-color: var(--forest-green);
    color: var(--sand-beige);
}

.privacy-kicker {
    color: var(--adventure-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.privacy-hero h1 {
    color: var(--sand-beige);
    margin-bottom: 12px;
}

.privacy-updated {
    color: rgba(232, 226, 213, 0.78);
    font-size: 1rem;
    margin: 0;
}

.privacy-content {
    padding: 70px 0 100px;
}

.privacy-container {
    max-width: 820px;
}

.privacy-content h2 {
    color: var(--forest-green);
    font-size: 1.8rem;
    margin: 42px 0 12px;
}

.privacy-content p {
    margin-bottom: 16px;
}

.privacy-content ul {
    margin: 0 0 20px 22px;
    color: rgba(26, 26, 26, 0.8);
}

.privacy-content li {
    margin-bottom: 8px;
    padding-left: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 20px;
    background-color: var(--charcoal-black);
    color: var(--sand-beige);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(232, 226, 213, 0.1);
    margin-bottom: 30px;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--sand-beige);
    margin-bottom: 12px;
}

.logo-image-small {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(100%) saturate(100%);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(232, 226, 213, 0.7);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 25px;
}

.footer-social a {
    color: var(--coastal-blue);
    font-size: 1.3rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--adventure-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(232, 226, 213, 0.72);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--adventure-orange);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(232, 226, 213, 0.5);
    margin: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomInSlow {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-wrapper {
        padding: 0 30px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .about-wrapper {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--sand-beige);
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero .btn {
        font-size: 0.9rem;
        padding: 14px 30px;
    }

    .about {
        padding: 60px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .features-grid {
        gap: 30px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .privacy-hero {
        padding: 80px 0 50px;
    }

    .privacy-content {
        padding: 50px 0 70px;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .nav-wrapper {
        padding: 0 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .logo {
        gap: 8px;
        font-size: 1.1rem;
    }

    .logo-icon {
        font-size: 1.4rem;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero {
        min-height: 400px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .about {
        padding: 40px 0;
    }

    .about-text p {
        font-size: 1rem;
    }

    .features {
        padding: 40px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .privacy-hero {
        padding: 60px 0 40px;
    }

    .privacy-content {
        padding: 40px 0 60px;
    }

    .privacy-content h2 {
        font-size: 1.35rem;
        margin-top: 34px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .footer-content {
        padding: 30px 20px;
    }

    .footer-bottom {
        padding: 0 20px;
    }
}
