﻿/* =========================================================
   RADHIKA SEEDS
   FULL GALLERY PAGE
   Completely isolated CSS
   Prefix: rsg-full-gallery-
   ========================================================= */

.rsg-full-gallery {
    --rsg-fg-green: #176b3a;
    --rsg-fg-dark: #082f1a;
    --rsg-fg-lime: #a8cf55;
    --rsg-fg-orange: #dc8124;
    --rsg-fg-text: #59665e;
    --rsg-fg-light: #f4f9f4;
    width: 100%;
    overflow: hidden;
    background: #fff;
}


    .rsg-full-gallery *,
    .rsg-full-gallery *::before,
    .rsg-full-gallery *::after {
        box-sizing: border-box;
    }


.rsg-full-gallery-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   HERO
   ========================================================= */

.rsg-full-gallery-hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    overflow: hidden;
}


    .rsg-full-gallery-hero > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.rsg-full-gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(3,34,18,.95), rgba(5,48,25,.73), rgba(5,40,20,.20) );
}


.rsg-full-gallery-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 100px 0;
}


    .rsg-full-gallery-hero-content > span {
        color: var(--rsg-fg-lime);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 2.5px;
    }


    .rsg-full-gallery-hero-content h1 {
        margin: 15px 0;
        color: #fff;
        font-size: clamp(43px,6vw,70px);
        line-height: 1.03;
    }


        .rsg-full-gallery-hero-content h1 strong {
            display: block;
            color: var(--rsg-fg-lime);
        }


    .rsg-full-gallery-hero-content p {
        max-width: 660px;
        color: rgba(255,255,255,.75);
        font-size: 14px;
        line-height: 1.85;
    }


.rsg-full-gallery-stats {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}


    .rsg-full-gallery-stats div {
        min-width: 115px;
        padding: 13px 15px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 13px;
        backdrop-filter: blur(8px);
    }


    .rsg-full-gallery-stats strong {
        display: block;
        color: var(--rsg-fg-lime);
        font-size: 21px;
    }


    .rsg-full-gallery-stats span {
        color: rgba(255,255,255,.68);
        font-size: 9px;
    }


/* =========================================================
   INTRO
   ========================================================= */

.rsg-full-gallery-intro {
    padding: 95px 0;
}


.rsg-full-gallery-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}


    .rsg-full-gallery-heading > span {
        color: var(--rsg-fg-green);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 2px;
    }


    .rsg-full-gallery-heading h2 {
        margin: 10px 0 14px;
        color: var(--rsg-fg-dark);
        font-size: clamp(31px,4vw,46px);
        line-height: 1.12;
    }


        .rsg-full-gallery-heading h2 strong {
            color: var(--rsg-fg-green);
        }


    .rsg-full-gallery-heading p {
        margin: 0;
        color: var(--rsg-fg-text);
        font-size: 13px;
        line-height: 1.8;
    }


/* =========================================================
   MASONRY
   ========================================================= */

.rsg-full-gallery-masonry {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 290px 290px;
    gap: 16px;
}


.rsg-full-gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 0;
    border-radius: 22px;
    background: #ddd;
}


    .rsg-full-gallery-item.rsg-full-gallery-large {
        grid-row: span 2;
    }


    .rsg-full-gallery-item.rsg-full-gallery-wide {
        grid-column: span 2;
    }


    .rsg-full-gallery-item img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .7s ease;
    }


    .rsg-full-gallery-item:hover img {
        transform: scale(1.07);
    }


.rsg-full-gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: #fff;
    background: linear-gradient( 180deg, rgba(0,0,0,.25), transparent 40%, rgba(0,35,17,.85) );
}


    .rsg-full-gallery-item-overlay > span {
        align-self: flex-start;
        padding: 7px 10px;
        background: rgba(23,107,58,.88);
        border-radius: 7px;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 1px;
    }


    .rsg-full-gallery-item-overlay h3 {
        margin: 0 0 5px;
        font-size: 22px;
    }


    .rsg-full-gallery-item-overlay p {
        max-width: 400px;
        margin: 0;
        color: rgba(255,255,255,.72);
        font-size: 10px;
        line-height: 1.6;
    }


/* =========================================================
   TRIAL
   ========================================================= */

.rsg-full-gallery-trial {
    padding: 95px 0;
    background: linear-gradient( 135deg, #07301a, #125b32 );
}


.rsg-full-gallery-trial-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    overflow: hidden;
    border-radius: 27px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
}


.rsg-full-gallery-trial-image {
    position: relative;
    min-height: 500px;
}


    .rsg-full-gallery-trial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


.rsg-full-gallery-trial-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    color: #fff;
    background: rgba(4,35,18,.85);
    border-radius: 12px;
    font-size: 9px;
    font-weight: 800;
}


    .rsg-full-gallery-trial-label i {
        color: var(--rsg-fg-lime);
    }


.rsg-full-gallery-trial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}


    .rsg-full-gallery-trial-content > span {
        color: var(--rsg-fg-lime);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1.7px;
    }


    .rsg-full-gallery-trial-content h2 {
        margin: 10px 0 15px;
        color: #fff;
        font-size: 38px;
        line-height: 1.15;
    }


        .rsg-full-gallery-trial-content h2 strong {
            display: block;
            color: var(--rsg-fg-lime);
        }


    .rsg-full-gallery-trial-content > p {
        margin: 0;
        color: rgba(255,255,255,.68);
        font-size: 12px;
        line-height: 1.8;
    }


.rsg-full-gallery-trial-points {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 28px;
}


    .rsg-full-gallery-trial-points > div {
        display: flex;
        gap: 11px;
    }


    .rsg-full-gallery-trial-points i {
        color: var(--rsg-fg-lime);
        font-size: 18px;
    }


    .rsg-full-gallery-trial-points strong {
        display: block;
        color: #fff;
        font-size: 11px;
    }


    .rsg-full-gallery-trial-points span {
        display: block;
        margin-top: 3px;
        color: rgba(255,255,255,.52);
        font-size: 9px;
        line-height: 1.5;
    }


/* =========================================================
   FARMER
   ========================================================= */

.rsg-full-gallery-farmer {
    padding: 95px 0;
    background: var(--rsg-fg-light);
}


.rsg-full-gallery-farmer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}


    .rsg-full-gallery-farmer-grid article {
        padding: 12px;
        background: #fff;
        border-radius: 21px;
        box-shadow: 0 12px 35px rgba(20,60,35,.08);
    }


        .rsg-full-gallery-farmer-grid article > div {
            height: 245px;
            overflow: hidden;
            border-radius: 15px;
        }


    .rsg-full-gallery-farmer-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s ease;
    }


    .rsg-full-gallery-farmer-grid article:hover img {
        transform: scale(1.06);
    }


    .rsg-full-gallery-farmer-grid h3 {
        margin: 16px 7px 5px;
        color: var(--rsg-fg-dark);
        font-size: 17px;
    }


    .rsg-full-gallery-farmer-grid p {
        margin: 0 7px 10px;
        color: var(--rsg-fg-text);
        font-size: 10px;
        line-height: 1.6;
    }


/* =========================================================
   OTHER CROPS
   ========================================================= */

.rsg-full-gallery-other {
    padding: 80px 0;
}


.rsg-full-gallery-other-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: linear-gradient( 135deg, #f1f8ef, #fff );
    border: 1px solid rgba(23,107,58,.10);
    border-radius: 25px;
}


.rsg-full-gallery-other-icon {
    width: 65px;
    height: 65px;
    flex: 0 0 65px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--rsg-fg-green);
    border-radius: 18px;
    font-size: 24px;
}


.rsg-full-gallery-other-card span {
    color: var(--rsg-fg-orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.7px;
}


.rsg-full-gallery-other-card h2 {
    margin: 7px 0;
    color: var(--rsg-fg-dark);
    font-size: 27px;
}


.rsg-full-gallery-other-card p {
    max-width: 850px;
    margin: 0;
    color: var(--rsg-fg-text);
    font-size: 11px;
    line-height: 1.8;
}


/* =========================================================
   CTA
   ========================================================= */

.rsg-full-gallery-cta {
    padding: 60px 0;
    background: linear-gradient( 135deg, #092f1a, #176b3a );
}


    .rsg-full-gallery-cta .rsg-full-gallery-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }


    .rsg-full-gallery-cta span {
        color: var(--rsg-fg-lime);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 2px;
    }


    .rsg-full-gallery-cta h2 {
        margin: 7px 0;
        color: #fff;
        font-size: 31px;
    }


        .rsg-full-gallery-cta h2 strong {
            color: var(--rsg-fg-lime);
        }


    .rsg-full-gallery-cta p {
        margin: 0;
        color: rgba(255,255,255,.62);
        font-size: 11px;
    }


    .rsg-full-gallery-cta a {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        flex-shrink: 0;
        padding: 14px 18px;
        color: var(--rsg-fg-dark) !important;
        background: var(--rsg-fg-lime);
        border-radius: 50px;
        text-decoration: none !important;
        font-size: 11px;
        font-weight: 800;
    }


        .rsg-full-gallery-cta a i {
            transition: transform .3s ease;
        }


        .rsg-full-gallery-cta a:hover i {
            transform: translateX(4px);
        }


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .rsg-full-gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 250px 250px;
    }


    .rsg-full-gallery-item.rsg-full-gallery-large {
        grid-row: span 1;
        grid-column: span 2;
    }


    .rsg-full-gallery-item.rsg-full-gallery-wide {
        grid-column: span 2;
    }


    .rsg-full-gallery-farmer-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .rsg-full-gallery-container {
        width: calc(100% - 24px);
    }


    .rsg-full-gallery-hero {
        min-height: 600px;
    }


    .rsg-full-gallery-hero-overlay {
        background: linear-gradient( 90deg, rgba(3,34,18,.94), rgba(3,45,20,.70) );
    }


    .rsg-full-gallery-hero-content {
        padding: 70px 0;
    }


        .rsg-full-gallery-hero-content h1 {
            font-size: 41px;
        }


        .rsg-full-gallery-hero-content p {
            font-size: 11px;
        }


    .rsg-full-gallery-stats {
        gap: 7px;
    }


        .rsg-full-gallery-stats div {
            min-width: 0;
            flex: 1;
            padding: 11px 8px;
        }


        .rsg-full-gallery-stats strong {
            font-size: 18px;
        }


        .rsg-full-gallery-stats span {
            font-size: 7px;
        }


    .rsg-full-gallery-intro,
    .rsg-full-gallery-farmer {
        padding: 65px 0;
    }


    .rsg-full-gallery-heading h2 {
        font-size: 31px;
    }


    .rsg-full-gallery-masonry {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 13px;
    }


    .rsg-full-gallery-item.rsg-full-gallery-large,
    .rsg-full-gallery-item.rsg-full-gallery-wide {
        grid-column: auto;
        grid-row: auto;
    }


    .rsg-full-gallery-item {
        height: 260px;
    }


    .rsg-full-gallery-item-overlay h3 {
        font-size: 19px;
    }


    .rsg-full-gallery-trial {
        padding: 65px 0;
    }


    .rsg-full-gallery-trial-grid {
        grid-template-columns: 1fr;
    }


    .rsg-full-gallery-trial-image {
        min-height: 270px;
    }


    .rsg-full-gallery-trial-content {
        padding: 30px 21px;
    }


        .rsg-full-gallery-trial-content h2 {
            font-size: 29px;
        }


    .rsg-full-gallery-trial-points {
        grid-template-columns: 1fr;
    }


    .rsg-full-gallery-farmer-grid {
        grid-template-columns: 1fr;
    }


        .rsg-full-gallery-farmer-grid article > div {
            height: 230px;
        }


    .rsg-full-gallery-other {
        padding: 60px 0;
    }


    .rsg-full-gallery-other-card {
        align-items: flex-start;
        padding: 25px 20px;
        gap: 15px;
    }


    .rsg-full-gallery-other-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 13px;
        font-size: 18px;
    }


    .rsg-full-gallery-other-card h2 {
        font-size: 21px;
    }


    .rsg-full-gallery-cta {
        padding: 45px 0;
    }


        .rsg-full-gallery-cta .rsg-full-gallery-container {
            align-items: flex-start;
            flex-direction: column;
        }


        .rsg-full-gallery-cta h2 {
            font-size: 27px;
        }


        .rsg-full-gallery-cta a {
            width: 100%;
            justify-content: center;
        }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .rsg-full-gallery-container {
        width: calc(100% - 18px);
    }


    .rsg-full-gallery-hero-content h1 {
        font-size: 35px;
    }


    .rsg-full-gallery-item {
        height: 230px;
    }


    .rsg-full-gallery-trial-content h2 {
        font-size: 26px;
    }
}
