/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    height:50vh;
    margin-top: 1;

    background-image:url("waxback.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/* DARK OVERLAY */
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

/* HERO CONTENT */
.hero-overlay{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:40px;
}

.hero-overlay h1{
    color:white;
    font-size:2.5rem;
    margin-bottom:25px;
    line-height:1.2;
}

.hero-overlay p{
    color:#f5f5f5;
    font-size:1.2rem;
    line-height:1.9;
    margin-bottom:35px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.btn{
    display:inline-block;
    padding:14px 24px;
    background:#f4c430;
    color:black;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s ease;
}

.btn:hover{
    background:white;
    transform:scale(1.05);
}

/* =========================
   GENERAL SECTION RESET (FIX GAP ISSUE)
========================= */

.section,
.section-alt,
.section-venom,
.section-end,
.contact-section{
    margin:0;
    padding:80px 8%;
    height:auto;
}

/* =========================
   HERO - MOBILE
========================= */

@media (max-width:768px){

    .hero{

        height:38vh;

        padding:20px;

        background-position:center;

    }

    .hero-overlay{

        max-width:100%;

        padding:20px 15px;

    }

    .hero-overlay h1{

        font-size:1.8rem;

        line-height:1.25;

        margin-bottom:15px;

    }

    .hero-overlay p{

        font-size:0.95rem;

        line-height:1.6;

        margin-bottom:22px;

    }

    .hero-buttons{

        gap:10px;

    }

    .btn{

        padding:12px 18px;

        font-size:14px;

        border-radius:6px;

    }

}



/* =========================
   IMAGE + TEXT SECTIONS
========================= */

.contents-row{
    display:flex;
    align-items:center;
    gap:50px;
    max-width:1200px;
    margin:auto;
}

.contents-image{
    flex:1;
}

.contents-image img{
    width:100%;
    height:auto;
    display:block;
    box-shadow:-5px 10px 20px rgba(0,0,0,0.15);
}

.contents-text{
    flex:1;
}

.section-alt h2{
    font-size:2.2rem;
    color:#8d5002;
    margin-bottom:20px;
    line-height:1.3;
}

.contents-text p{
    font-size:1rem;
    line-height:1.8;
    color:#000;
    margin-top:20px;
}

/* =========================
   BEE VENOM SECTION (FIXED)
========================= */

.section-venom{
    background-color:#f1e6c5;
    margin:0;
    padding:80px 8%;
}

.venom-row{
    display:flex;
    align-items:center;
    gap:50px;
    max-width:1200px;
    margin:auto;
}

.venom-text{
    flex:1;
}

.section-venom h2{
    font-size:3rem;
    color:#8d5002;
    margin-bottom:20px;
    padding-top:0;
}

.venom-text p{
    line-height:1.9;
    color:#444;
}

.venom-image{
    flex:1;
}

.venom-image img{
    width:90%;
    max-width:400px;
    height:auto;
    display:block;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}


/* =========================
TABLET VIEW
========================= */
@media (max-width: 1024px){

    .contents-row,
    .venom-row{
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .contents-text,
    .venom-text{
        order: 1;
        width: 100%;
    }

    .contents-image,
    .venom-image{
        order: 2;
        width: 100%;
    }

    .section-alt h2,
    .section-venom h2{
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .contents-text p,
    .venom-text p{
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .contents-image img{
        max-width: 500px;
        width: 80%;
        margin: auto;
    }

    .venom-image img{
        max-width: 350px;
        width: 80%;
        margin: auto;
    }
}

/* =========================
MOBILE VIEW
========================= */
@media (max-width: 768px){

    .section-alt,
    .section-venom{
        padding: 50px 20px;
    }

    .contents-row,
    .venom-row{
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .contents-text,
    .venom-text{
        order: 1;
    }

    .contents-image,
    .venom-image{
        order: 2;
    }

    .section-alt h2{
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .section-venom h2{
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .contents-text p,
    .venom-text p{
        font-size: 0.9rem;
        line-height: 1.7;
        margin-top: 10px;
    }

    .contents-image img{
        width: 90%;
        max-width: 350px;
        margin: auto;
    }

    .venom-image img{
        width: 85%;
        max-width: 280px;
        margin: auto;
    }
}

/* =========================
SMALL PHONES
========================= */
@media (max-width: 480px){

    .section-alt h2{
        font-size: 1.5rem;
    }

    .section-venom h2{
        font-size: 1.7rem;
    }

    .contents-text p,
    .venom-text p{
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .contents-image img{
        max-width: 280px;
    }

    .venom-image img{
        max-width: 240px;
    }
}






/* =========================
   CENTER SECTION
========================= */

.center-section{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.center-section p{
    text-align:center;
    line-height:1.9;
}

/* =========================
   END SECTION (FIXED)
========================= */

.section-end{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
    min-height:auto;
    margin-bottom: -2px;
}

.center-section h2{
    margin-bottom:20px;
    font-size:2rem;
    color:#8d5002;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    position:relative;
    background:url("background1.jpg");
    background-size:cover;
    background-position:center;
}

.contact-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.contact-wrapper{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:auto;
}

.contact-wrapper h2{
    color:white;
    text-align:center;
    margin-bottom:40px;
}
.form-card{
    background:white;
    padding:40px;
    border-radius:0;
    margin: 0%;
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.form-row input{
    flex:1;
}

.form textarea{
    width:100%;
    min-height:180px;
    resize:none;
}


.whatsapp-contact{
    text-align:center;
    margin-top:25px;
}

.whatsapp-contact p{
    margin-bottom:10px;
    color:#ffffff;
}

.whatsapp-btn{
    display:inline-block;
    padding:12px 24px;
    background:#25D366;
    color:white;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s ease;
}

.whatsapp-btn:hover{
    transform:scale(1.05);
}


/* =========================
TABLET VIEW
========================= */
@media (max-width: 1024px){

    .section-end{
        padding: 60px 30px;
    }

    .center-section{
        max-width: 100%;
    }

    .center-section h2{
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .center-section p{
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .contact-wrapper{
        padding: 0 20px;
    }

    .contact-wrapper h2{
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .form-card{
        padding: 30px;
    }

    .form-row{
        gap: 15px;
    }
}

/* =========================
MOBILE VIEW
========================= */
@media (max-width: 768px){

    .section-end{
        padding: 50px 20px;
    }

    .center-section h2{
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .center-section p{
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .contact-wrapper{
        padding: 0 15px;
    }

    .contact-wrapper h2{
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .form-card{
        padding: 20px;
    }

    /* Stack inputs vertically */
    .form-row{
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }

    .form-row input{
        width: 100%;
    }

    .form textarea{
        min-height: 140px;
    }

    .whatsapp-contact p{
        font-size: 0.9rem;
    }

    .whatsapp-btn{
        width: 100%;
        max-width: 280px;
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

/* =========================
SMALL PHONES
========================= */
@media (max-width: 480px){

    .section-end{
        padding: 40px 15px;
    }

    .center-section h2{
        font-size: 1.4rem;
    }

    .center-section p{
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .contact-wrapper h2{
        font-size: 1.4rem;
    }

    .form-card{
        padding: 15px;
    }

    .form textarea{
        min-height: 120px;
    }

    .whatsapp-btn{
        max-width: 240px;
        font-size: 0.9rem;
    }
}



/* =========================
   FOOTER
========================= */

.footer{
    background:#8d5002;
    color:#fff;
    padding:40px 8%;
    text-align:center;
}

.footer-logo{
    height:80px;
    margin-bottom:20px;
}

.footer p{
    color:#ddd;
}





/* =========================
   FOOTER - DESKTOP
========================= */
.footer {
    background: #8d5002;
    color: #fff;
    padding: 40px 8%;
    text-align: center;
    width: 100%;
    margin: 0;
}

.footer-logo {
    height: 90px;
    width: auto;
    display: block;
    margin: 0 auto 20px;
    object-fit: contain;
}

.footer h3 {
    font-size: 22px;
    font-weight: 700;
    color: #f4c430;
    margin-bottom: 16px;
}

.footer p {
    color: #f0e0d0;
    font-size: 15px;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 10px;
}

/* DIVIDER LINE before copyright */
.footer p:last-child {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    color: #d4b896;
}


/* =========================
   FOOTER - TABLET
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .footer {
        padding: 50px 6%;
    }

    .footer-logo {
        height: 75px;
    }

    .footer h3 {
        font-size: 20px;
    }

    .footer p {
        font-size: 14px;
        max-width: 80%;
    }
}




  /*BUY SECTION - DESKTOP
========================= */
.section-buy {
    padding: 80px 8%;
    background: #fff;
}


/* HEADING - centered */
.section-buy h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
    line-height: 1.25;
    position: relative;
}


/* GOLD ACCENT LINE under heading */
.section-buy h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #f4c430;
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ROW - image left, text right */
.buy-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

/* IMAGE - LEFT */
.buy-image {
    flex: 1;
    order: 1;
}

.buy-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* TEXT - RIGHT */
.buy-text {
    flex: 1;
    order: 2;
}

.buy-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}



/* =========================
   FADE ANIMATIONS
========================= */
.fade-left,
.fade-right {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-right {
    transform: translateX(40px);
}

.fade-left.show-section,
.fade-right.show-section {
    opacity: 1;
    transform: translateX(0);
}


/* =========================
   TABLET — 769px to 1024px
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

    .section-buy {
        padding: 60px 6%;
    }

    .section-buy h2 {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .buy-row {
        gap: 35px;
    }

    .buy-image img {
        height: 340px;
    }

    .buy-text p {
        font-size: 15px;
        line-height: 1.8;
    }
}


/* =========================
   MOBILE — max 768px
========================= */
@media (max-width: 768px) {

    .section-buy {
        padding: 40px 5%;
    }

    /* HEADING - centered */
    .section-buy h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    /* STACK: heading → text → image */
    .buy-row {
        flex-direction: column;
        gap: 20px;
    }

    /* TEXT first on mobile */
    .buy-text {
        order: 1;
        width: 100%;
    }

    /* IMAGE below text on mobile */
    .buy-image {
        order: 2;
        width: 100%;
    }

    .buy-image img {
        width: 100%;
        height: 240px;          /* compact but visible on small screens */
        object-fit: cover;
        border-radius: 10px;
    }

    .buy-text p {
        font-size: 14px;
        line-height: 1.75;
        text-align: center;
    }
}



/* ACTIVE line */
.nav-links a.active {
    color: #ffffff;           /* keep text white and visible */
    position: relative;
    padding: 7px 11px;
    border-radius: 20px;
    background: transparent;  /* ← no background */
}

/* ANIMATED OUTLINE ONLY */
.nav-links a.active::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 2px solid #f4c430;
    animation: cycleOutline 1.5s linear infinite;
}

@keyframes cycleOutline {
    0% {
        clip-path: inset(0 100% 0 0);        /* starts from left */
    }
    25% {
        clip-path: inset(0 0 0 0);           /* fully visible */
    }
    50% {
        clip-path: inset(0 0 0 0);           /* hold */
    }
    75% {
        clip-path: inset(0 0 0 100%);        /* disappears to right */
    }
    100% {
        clip-path: inset(0 100% 0 0);        /* resets */
    }
}

/* REMOVE OLD UNDERLINE ON ACTIVE */
.nav-links a.active::after {
    display: none;
}


