:root {
    --primary: #1d3a28;
    --accent: #ff8d30;
    --light: #f8f7f3;
    --dark: #111111;
    --muted: #666666;
    --white: #ffffff;
    --green: #32c93f;
    --shadow: 0 15px 40px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    background: #f8fff8;
    color: #003503;
    overflow-x: hidden;
    text-align: center;
    
}

section {
    padding: 40px 0;
    max-width: 1200px;
    Margin-top: 20px;
    margin-bottom: 50px;
    margin-left: 5%;
    margin-right: 5%;
    
}

section.alt {
    background: #beeeb2;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

a {
    text-decoration: none;
    color: #333634;
}

a:hover {
    color: #80c792;
    text-decoration: none;
}

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

h2 {
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}

h2 em {
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
    color: #e6e6e6;
}

h3 {
    text-align: center;
    margin-bottom: 16px;
    font-weight: 400;
}

h3 em {
    margin-bottom: 16px;
    font-style: italic;
    font-weight: 500;
    color: #ff841f;
    text-align: center;
}

/* NAVBAR */

.navbar {
    position: sticky;
    display: flex;
    top: 0;
    width: auto;
    z-index: 999;
    
    background: rgb(0, 0, 0);
    backdrop-filter: blur(12px);
    transition: 0.35s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.301);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: white;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
}

.accent {
    color: #32c93f;
}

.nav-links {
    display: none;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

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

.hamburger span {
    width: 28px;
    height: 2px;
    background: white;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px;
    background: rgba(0, 0, 0, 0.95);
}

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

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 0;
}

/* HERO */

.hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('assets/img/strelitzia_nicolai_seed.jpg');
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    animation: heroZoom 12s ease-out forwards;
    margin: 0;
    max-width: 100%;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      170deg,
      rgba(10,24,16,0.45) 0%,
      rgba(10,24,16,0.2) 35%,
      rgba(7, 17, 12, 0.65) 75%,
      rgba(10,24,16,0.92) 100%
    );
  }
  

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-content span {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    font-style: italic;
    color: rgb(248, 134, 4);
}

.hero h1 {
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    color: white;
    
}

.hero h2 {
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(2rem, 10vw, 3rem);
    font-weight: 400;
    color: white;
    
}

.hero h1 span {
    color: #3cbe47;
    font-style: italic;
    font-weight: 600;
}




.hero h1 span2 {
    color: white;
    font-style: italic;
    font-weight: 600;
    
}

.hero p {
    margin: 30px auto;
    font-size: 1.15rem;
    max-width: 700px;
    line-height: 1.8;
    color: #d6d6d6;
    font-weight: 600;
}

.hero-actions {
    margin-top: 40px;
}

.hero-blend {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, transparent, #050805);
}

.accent {
    color: #32c93f;
}

/* BUTTONS */

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.35s;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #ff9d4d;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.primary {
    background: #ff7100;
    color: black;
}

.secondary {
    background: #237a0d;
    border: 3px solid #0e6b0b;
    color: white;
}

.accent2 {
    color: #f78b27;
}

/* CONTENT */

.container {
    width: 100%;
    max-width: 1200px;
    
    padding: 0 20px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 50px;
}

.card {
    background: var(--white);
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: 0.4s;
}

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

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

.section-bg {
    background-color: #f8fcf9;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #5cb874;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-sub {
    color: var(--muted);
    margin-bottom: 50px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

/* GALLERY */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-img {
    height: 240px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.seed1 {
    background-image: url('assets/img/strelitzia_nicolai_flower.png');
}

.seed2 {
    background-image: url('assets/img/strelitzia_nicolai_bulk_seed.jpg');
}

.seed3 {
    background-image: url('assets/img/strelitzia_nicolai_bird_of_paradise.jpg');
}

/* FAQ */

.faq-item {
    margin-bottom: 25px;
    text-align: left;
}

.faq-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
}

/* CONTACT */

.contact-box {
    background: linear-gradient(135deg, var(--primary), #244832);
    padding: 60px;
    border-radius: 28px;
    color: var(--white);
    text-align: center;
}

.contact-box h2 {
    color: var(--white);
}

form {
    max-width: 700px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

input,
select,
textarea {
    padding: 16px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
}

textarea,
.full-width {
    grid-column: span 2;
}

button {
    border: none;
    cursor: pointer;
}

.contact-details {
    margin-top: 35px;
    opacity: 0.9;
}

/* CTA */

.cta {
    text-align: center;
    background: linear-gradient(145deg, #081108, #122112);
    border-radius: 30px;
    padding: 80px 40px;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "helvetica", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #fff;
    color: #5cb874;
}

/* REVEAL ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #5cb874;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #78c48c;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #090909;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    font-size: 15px;
    font-style: italic;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer .copyright {
    margin: 0 0 5px 0;
}

#footer .credits {
    font-size: 13px;
}

/* DESKTOP */

@media (min-width: 900px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    .mobile-menu {
        display: none;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TABLET AND MOBILE */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }

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

    form {
        grid-template-columns: 1fr;
    }

    textarea,
    .full-width {
        grid-column: span 1;
    }

    section {
        margin-left: 5%;
        margin-right: 5%;
    }

    .contact-box {
        padding: 40px 20px;
    }
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}
