/* =================================
GLOBAL RESET
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0c1c12a8;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

/* =================================
HEADER
================================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: all .35s ease;
}

.main-header.shrink {
    background: rgba(3, 31, 10, 0.932);
    padding: 5px 0;
}

.header-container {
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    min-height: 70px;
    transition: all .35s ease;
}

/* =================================
LOGO
================================= */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
    transition: all .3s ease;
}

.logo-image:hover {
    opacity: 0.8;
    transform: scale(1.08);
}

.main-header.shrink .logo-image {
    height: 60px;
}

/* =================================
NAVIGATION
================================= */
.desktop-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    display: flex;
    align-items: center;
}

.desktop-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
    white-space: nowrap;
    padding: 0 12px;
}

.desktop-nav a:hover {
    color: #7CFF8A;
}

.desktop-nav .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 300;
    margin: 0 2px;
}

.desktop-nav li:last-child .separator {
    display: none;
}

/* =================================
HEADER ACTIONS
================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-left: 20px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 6px 0;
    transition: .3s;
    white-space: nowrap;
}

.phone-number i {
    font-size: 14px;
    color: #7CFF8A;
}

.phone-number:hover {
    color: #7CFF8A;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: #7CFF8A;
    color: #000;
    transform: translateY(-2px);
}

/* =================================
MOBILE TOGGLE
================================= */
.mobile-toggle {
    display: none;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

/* =================================
MOBILE MENU
================================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #0e1a12;
    padding: 30px;
    transition: .35s;
    z-index: 99999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 20px;
    color: #fff;
}

.mobile-menu-header i {
    cursor: pointer;
    font-size: 24px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.mobile-menu a:hover {
    color: #7CFF8A;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 99998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =================================
HERO SECTION - RESPONSIVE FIX
================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0b140d, #1e3b2c);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    /* Ensure the image covers the entire container */
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsive adjustments for different devices */
@media (max-width: 1200px) {
    .hero-bg-img {
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 992px) {
    .hero-bg-img {
        object-fit: cover;
        object-position: 55% center;
    }
}

@media (max-width: 768px) {
    .hero-bg-img {
        object-fit: cover;
        object-position: 60% center;
    }
}

@media (max-width: 576px) {
    .hero-bg-img {
        object-fit: cover;
        object-position: 65% center;
    }
}

@media (max-width: 480px) {
    .hero-bg-img {
        object-fit: cover;
        object-position: 70% center;
    }
}

/* For tall screens */
@media (max-height: 800px) and (min-width: 768px) {
    .hero-bg-img {
        object-fit: cover;
        object-position: center 30%;
    }
}

@media (max-height: 600px) {
    .hero-bg-img {
        object-fit: cover;
        object-position: center 20%;
    }
}

/* Ensure the overlay still works */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 19, 0), rgba(30, 59, 44, 0));
    z-index: 2;
    pointer-events: none;
}

/* Hero Content - Ensure it's above the background */
.hero-content {
    position: relative;
    z-index: 10;
}
.outlined-text-container {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 3;
    pointer-events: none;
    text-align: center;
}

.cannabis-text {
    font-size: 100px;
    font-weight: 900;
    letter-spacing: 15px;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
    display: inline-block;
    background-image: url('../img/cannabis.png');
    background-repeat: repeat-x;
    background-size: 500px auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.25);
    animation: scrollImage 155s linear infinite;
}

@keyframes scrollImage {
    0% {
        background-position: 2000px 0;
    }
    100% {
        background-position: -2000px 0;
    }
}

.hero-content {
    position: absolute;
    right: 4%;
    top: 35%;
    transform: translateY(-50%);
    z-index: 4;
    max-width: auto;
    text-align: right;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    color: #7CFF8A;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
    color: #7CFF8A;
    display: block;
    font-size: 60px;
}

.hero-content p {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* =================================
BUTTON STYLES - FLUID WITH CLAMP()
================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    outline: none;
}

.btn img {
    width: clamp(70px, 12vw, 180px);
    height: auto;
    display: block;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border-radius: 12px;
    will-change: transform, filter;
    object-fit: contain;
}

/* For square proportions using clamp() */
/* .btn img {
    width: clamp(80px, 10vw, 160px);
    height: clamp(80px, 10vw, 160px);
} */

.btn:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px rgba(46, 204, 113, 0.6))
            drop-shadow(0 0 20px rgba(46, 204, 113, 0.4));
}

.btn:active img {
    transform: scale(0.96);
    filter: drop-shadow(0 0 8px rgba(39, 174, 96, 0.8));
    transition: all 0.05s ease;
}

.btn:focus-visible {
    outline: 2px solid #2ecc71;
    outline-offset: 4px;
    border-radius: 12px;
}

/* Touch Device Optimization */
@media (hover: none) {
    .btn:hover img {
        transform: none;
        filter: none;
    }
    
    .btn:active img {
        transform: scale(0.96);
        filter: drop-shadow(0 0 8px rgba(39, 174, 96, 0.8));
    }
}
/* =================================
WELCOME SECTION - FIXED
================================= */
.welcome {
    width: 100%;
    padding: 80px 20px;
    background: #262c22;
    text-align: center;
}

.welcome-container {
    max-width: 1400px;
    margin: 0 auto;
}

.welcome h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    margin-bottom: 15px;
    color: #fff;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: #cfcfcf;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.welcome-grid img {
    width: 100%;
    height: auto;
    border: 6px solid #4d504d;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.welcome-grid img:hover {
    transform: scale(1.02);
}

.welcome-text {
    padding: 0 10px;
}

.welcome-text p {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 25px;
}

.readmore {
    color: #7CFF8A;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.readmore:hover {
    gap: 15px;
}

/* =================================
WELLNESS SECTION - PRECISE ALIGNMENT
================================= */
.wellness {
    background: url('../img/wellness-bg.png') center/cover no-repeat;
    padding: 30px 0;
    position: relative;
}

/* Dark overlay for text readability */
.wellness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 1;
}

.wellness .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.wellness h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #fff;
    text-align: right;
    font-weight: 600;
    letter-spacing: -0.5px;
    padding-right: 40px; /* Right padding for spacing */
    margin-left: 200px; /* Left margin */
}

.wellness p {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.8;
    text-align: justify;
    padding-right: 40px; /* Right padding for spacing */
    margin-left: 335px; /* Left margin */
    max-width: 900px; /* Optimal reading width */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .wellness h2 {
        font-size: 36px;
        margin-left: 100px;
        padding-right: 40px;
    }
    
    .wellness p {
        margin-left: 100px;
        padding-right: 40px;
        font-size: 17px;
    }
}

@media (max-width: 992px) {
    .wellness {
        padding: 60px 0;
        text-align: center;
    }
    
    .wellness::before {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .wellness h2 {
        margin-left: 0;
        padding-right: 0;
        text-align: center;
        font-size: 32px;
    }
    
    .wellness p {
        margin-left: auto;
        margin-right: auto;
        padding-right: 0;
        text-align: justify;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .wellness {
        padding: 50px 0;
    }
    
    .wellness h2 {
        font-size: 28px;
    }
    
    .wellness p {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .wellness {
        padding: 40px 0;
    }
    
    .wellness h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .wellness p {
        font-size: 14px;
        line-height: 1.7;
        padding: 0 15px;
    }
}
/* =================================
BRANDS
================================= */
.brands {
    padding: 40px 0;
    background: white;
    text-align: center;
}

/* =================================
DISCOUNT SECTION - FIXED
================================= */
.discount {
    width: 100%;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.discount .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.discount-content {
    max-width: 600px;
    color: #ffffff;
}

.discount-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.2;
}

.discount-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #7CFF8A;
}

.discount-content .btn-large {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #7CFF8A;
    color: #0a1f0e;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.discount-content .btn-large:hover {
    background: transparent;
    color: #ffffff;
    border-color: #7CFF8A;
    transform: translateY(-3px);
}

/* =================================
NEWSLETTER
================================= */
.newsletter {
    padding: 80px 20px;
    background: #16261c;
    text-align: center;
}

.newsletter .container {
    max-width: 1200px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter p {
    color: #cfcfcf;
    font-size: 18px;
    margin-bottom: 40px;
}

.newsletter form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: #1a2e24;
    color: white;
    border: 2px solid transparent;
}

.newsletter input:focus {
    outline: none;
    border-color: #7CFF8A;
}

.newsletter input::placeholder {
    color: #888;
}

.newsletter button {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    background: #7CFF8A;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: transparent;
    color: #fff;
    border: 2px solid #7CFF8A;
    padding: 16px 38px;
}


/* =================================
RESPONSIVE DESIGN - CONSOLIDATED
================================= */
@media (max-width: 1200px) {
    .cannabis-text {
        font-size: 160px;
        letter-spacing: 10px;
    }
    
    .hero-content h1 {
        font-size: 60px;
    }
    
    .hero-content h1 span {
        font-size: 70px;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr 1.5fr 1fr;
    }
}

@media (max-width: 992px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .logo-image {
        height: 85px;
    }
    
    .main-header.shrink .logo-image {
        height: 60px;
    }
    
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-grid img {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-content {
        right: 5%;
        text-align: right;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content h1 span {
        font-size: 58px;
    }
    
    .cannabis-text {
        font-size: 120px;
    }
    
    .wellness h2 {
        font-size: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 70px;
    }
    
    .main-header.shrink .logo-image {
        height: 50px;
    }
    
    .hero {
        height: 90vh;
    }
    
    .hero-content {
        text-align: center;
        left: 0;
        right: 0;
        padding: 0 20px;
        top: 40%;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content h1 span {
        font-size: 48px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .cannabis-text {
        font-size: 80px;
        letter-spacing: 5px;
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
    }
    
    .welcome {
        padding: 60px 20px;
    }
    
    .welcome h2 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .wellness {
        padding: 80px 20px;
    }
    
    .wellness h2 {
        font-size: 32px;
    }
    
    .discount {
        padding: 80px 0;
    }
    
    .discount-content h2 {
        font-size: 28px;
    }
    
    .discount-content h3 {
        font-size: 36px;
    }
    
    .newsletter form {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 50px;
        max-width: 180px;
    }
    
    .main-header.shrink .logo-image {
        height: 40px;
    }
    
    .cannabis-text {
        font-size: 40px;
        letter-spacing: 2px;
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.25);
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h1 span {
        font-size: 34px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .welcome h2 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .welcome-text p {
        font-size: 16px;
    }
    
    .wellness h2 {
        font-size: 28px;
    }
    
    .wellness p {
        font-size: 16px;
    }
    
    .discount-content h2 {
        font-size: 24px;
    }
    
    .discount-content h3 {
        font-size: 32px;
    }
    
    .discount-content .btn-large {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .newsletter h2 {
        font-size: 32px;
    }
    
    .newsletter p {
        font-size: 16px;
    }
    
    .newsletter input,
    .newsletter button {
        padding: 14px 20px;
    }
}

/* =================================
TOUCH DEVICE OPTIMIZATION
================================= */
@media (hover: none) {
    .btn:hover img {
        transform: none;
        filter: none;
    }
    
    .btn:active img {
        transform: scale(0.96);
        filter: drop-shadow(0 0 8px rgba(39, 174, 96, 0.8));
    }
    
    .logo-image:hover {
        transform: none;
    }
}