/*
Theme Name: Lush Kingdom 3
Theme URI: https://wwwows.com/demos/poodle/
Author: Antigravity
Description: A clean, editorial WordPress theme for Lush Kingdom, featuring Boldonse and Archivo fonts.
Version: 1.0.6
Text Domain: lush-kingdom-3
*/

/* =========================================
   1. Font Definitions
   ========================================= */

@font-face {
    font-family: 'Boldonse';
    src: url('assets/fonts/Boldonse-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archivo';
    src: url('assets/fonts/Archivo-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archivo';
    src: url('assets/fonts/Archivo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archivo';
    src: url('assets/fonts/Archivo-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Archivo';
    src: url('assets/fonts/Archivo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* =========================================
   2. Variables
   ========================================= */

:root {
    /* Colors */
    --color-navy: #0c006d;
    --color-jungle: #1a4d2e;
    --color-grey: #b4b4b4;
    --color-electric-blue: #2400ff;
    --color-cyan: #13c4cf;
    --color-neon-yellow: #f2ff00;
    --color-gold: #ffcc00;
    --color-hot-pink: #ff004d;
    --color-orange: #ff7a00;
    --color-soft-green: #77d16b;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-footer-bg: #cccccc;

    /* Typography */
    --font-heading: 'Boldonse', sans-serif;
    --font-body: 'Archivo', sans-serif;
}

/* =========================================
   3. Base Styles
   ========================================= */

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-black);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: normal;
    text-transform: none;
    margin-top: 0;
    line-height: 1.1;
    color: var(--color-black);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   4. Utility Classes
   ========================================= */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.rounded-card {
    border-radius: 20px;
    overflow: hidden;
}

/* =========================================
   5. Header & Navigation
   ========================================= */

.site-header {
    padding: 20px 0;
    background-color: var(--color-white);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid #eee;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 0.9;
    color: var(--color-black);
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 20px;
}

.main-navigation {
    flex-grow: 1;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.main-navigation li {
    position: relative;
    white-space: nowrap;
}

.main-navigation a {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--color-black);
    letter-spacing: 0.5px;
    display: block;
    padding: 10px 5px;
}

.main-navigation a:hover {
    color: var(--color-jungle);
}

/* Dropdown Menus */
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    z-index: 999;
    border-radius: 0 0 5px 5px;
    justify-content: flex-start;
}

.main-navigation ul li:hover>ul {
    display: flex;
}

.main-navigation ul ul li {
    width: 100%;
    white-space: normal;
}

.main-navigation ul ul a {
    padding: 10px 20px;
    font-size: 0.8rem;
    text-transform: none;
    border-bottom: 1px solid #f5f5f5;
}

.main-navigation ul ul a:hover {
    background-color: #f9f9f9;
    color: var(--color-jungle);
}

.main-navigation ul ul li:last-child a {
    border-bottom: none;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
    margin-left: 20px;
}

.icon-link {
    color: var(--color-black);
    display: flex;
    align-items: center;
}

.cart-count {
    font-family: var(--font-body);
    font-weight: 700;
    margin-left: 5px;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 6px;
    z-index: 200;
}

.hamburger-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-black);
    transition: all 0.3s ease;
    border-radius: 3px;
}

@media (max-width: 1200px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation .menu-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        padding: 30px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 998;
    }

    .main-navigation.toggled .menu-container {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .main-navigation a {
        color: var(--color-black);
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
    }

    .main-navigation a:hover {
        color: var(--color-jungle);
    }

    .main-navigation {
        order: 3;
        flex-grow: 0;
    }

    .header-grid {
        flex-wrap: nowrap;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   6. Front Page Styles
   ========================================= */

/* Hero */
.hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    text-align: center;
    color: var(--color-white);
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    color: #ffffff !important;
    font-size: clamp(3rem, 6vw, 5rem);
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    line-height: 1;
    text-transform: none;
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
}

/* Services */
.service-item {
    margin-bottom: 40px;
}

.service-item h3 {
    font-family: var(--font-body);
    /* Archivo */
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--color-black);
}

.service-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Drop Card */
.drop-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.drop-card {
    height: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.drop-card:hover {
    transform: scale(1.02);
}

.drop-title {
    color: #fff;
    font-size: 3.5rem;
    text-align: center;
    line-height: 0.9;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    padding: 20px;
    text-transform: none;
}

/* Journal */
.journal-entry {
    margin-bottom: 50px;
}

.journal-thumb img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.journal-title {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.journal-title a {
    color: var(--color-black);
}

.journal-title a:hover {
    color: var(--color-jungle);
}

.journal-excerpt {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
    font-family: var(--font-body);
}

.read-more {
    font-size: 0.9rem;
    padding: 8px 20px;
}

/* =========================================
   7. Button Styles
   ========================================= */

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-family: var(--font-heading);
    text-transform: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: transform 0.2s;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-jungle);
    color: var(--color-gold);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #143a22;
    transform: translateY(-2px);
    color: var(--color-gold);
}

.btn-outline {
    border: 2px solid var(--color-black);
    background: transparent;
    color: var(--color-black);
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.hero-btn {
    margin-top: 20px;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
}

.services-btn,
.journal-btn {
    margin-top: 20px;
    width: 100%;
    border-radius: 5px;
    padding: 12px 0;
    font-size: 1.1rem;
    background-color: var(--color-jungle);
    color: var(--color-gold);
}

/* Section Titles */
.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    line-height: 1;
    color: var(--color-black);
    white-space: nowrap;
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-footer-bg);
    padding: 60px 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-black);
}

.footer-col p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--color-black);
}

.footer-menu a:hover {
    color: var(--color-jungle);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--color-jungle);
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}

.newsletter-form button {
    width: 100%;
    padding: 10px;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background-color: var(--color-jungle);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}