/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 500;
}

p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    background-image: url('AdobeStock_247841027.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    z-index: 10;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 3px;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background: rgba(255, 255, 255, 0.8);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.hero-title {
    color: white;
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
}

.hero-subtitle {
    color: white;
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.cta-button {
    display: inline-block;
    color: white;
    background: transparent;
    border: 2px solid white;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: white;
    color: #5a6f5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Pagination Dots */
.pagination-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Transition Section */
.transition-section {
    position: relative;
    background: #a0b7aa;
    padding: 30px 30px 30px;
    text-align: center;
}

.mountain-curve {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 50px;
    background: #a0b7aa;
    clip-path: polygon(
        0% 100%,
        5% 80%,
        10% 90%,
        15% 70%,
        20% 85%,
        25% 75%,
        30% 90%,
        35% 80%,
        40% 95%,
        45% 85%,
        50% 70%,
        55% 85%,
        60% 75%,
        65% 90%,
        70% 80%,
        75% 95%,
        80% 85%,
        85% 75%,
        90% 90%,
        95% 80%,
        100% 100%,
        100% 100%,
        0% 100%
    );
}

.transition-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.center-logo {
    max-width: 280px;
    height: auto;
    margin: 0 auto 25px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}

.tagline {
    color: white;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0px;
    margin-bottom: 30px;
}

.green-section-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.green-section-text p {
    color: white;
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: left;
    font-weight: 300;
}

.green-section-text .intro-text {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 18px;
}

/* Content Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Content Section 2 - Image & Text */
.content-section-2 {
    background: white;
    padding: 100px 0;
}

.image-text-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 70px;
    align-items: start;
}

.image-block {
    position: sticky;
    top: 100px;
}

.story-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 800px;
}

.text-block h3 {
    font-size: 48px;
    color: #2c5530;
    margin-bottom: 28px;
    font-weight: 500;
    line-height: 1.3;
}

.text-block h4 {
    font-size: 30px;
    color: #2c5530;
    margin-top: 38px;
    margin-bottom: 18px;
    font-weight: 600;
}

.text-block p {
    color: #4a4a4a;
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 22px;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-contact {
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 35px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.instagram-link svg {
    width: 28px;
    height: 28px;
}

.footer-copyright {
    font-size: 18px;
    opacity: 0.7;
    margin: 10px 0 0 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .green-section-text p {
        font-size: 19px;
    }
    
    .green-section-text .intro-text {
        font-size: 22px;
    }
    
    .center-logo {
        max-width: 220px;
    }
    
    .transition-section {
        padding: 25px 30px 25px;
    }
    
    .image-text-layout {
        gap: 50px;
        grid-template-columns: 0.9fr 1.2fr;
    }
    
    .text-block h3 {
        font-size: 42px;
    }
    
    .text-block p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 19px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .image-text-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-block {
        position: static;
    }
    
    .story-image {
        max-height: 500px;
    }
    
    .text-block h3 {
        font-size: 28px;
    }
    
    .center-logo {
        max-width: 200px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .green-section-text p {
        font-size: 15px;
    }
    
    .green-section-text .intro-text {
        font-size: 16px;
    }
    
    .transition-section {
        padding: 30px 20px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 35vh;
        min-height: 280px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .content-section-1,
    .content-section-2 {
        padding: 60px 0;
    }
    
    .transition-section {
        padding: 80px 20px 100px;
    }
    
    .section-heading {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .text-block h3 {
        font-size: 24px;
    }
    
    .text-block h4 {
        font-size: 18px;
    }
    
    .story-image {
        max-height: 400px;
    }
    
    .instagram-link {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .footer-contact {
        font-size: 14px;
    }
    
    .green-section-text p {
        font-size: 14px;
    }
    
    .green-section-text .intro-text {
        font-size: 15px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .transition-section {
        padding: 20px 15px 20px;
    }
    
    .center-logo {
        max-width: 100px;
    }
}
