:root {
    /* Color Palette */
    --bg-dark: #faf9f6; /* A clean, soft warm cream/white background */
    --bg-card: rgba(255, 255, 255, 0.8); /* Pure white glass card with high opacity */
    --primary-gold: #b59432; /* Elegant dark antique gold for headings */
    --primary-gold-dim: rgba(181, 148, 50, 0.15);
    --accent-red: #166534; /* High-end emerald green (replaces red) */
    --text-main: #1e293b; /* Dark slate gray for main text readability */
    --text-muted: #475569; /* Soft slate gray for descriptions */
    --border-glass: rgba(22, 101, 52, 0.12); /* Subtle green/gold border */

    /* Typography */
    --font-heading: 'Noto Serif SC', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Sizes */
    --max-width: 1200px;
    --section-padding: 100px 20px;
    
    /* Animation */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Overlay for Depth */
.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 15% 25%, rgba(22, 101, 52, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 85% 75%, rgba(181, 148, 50, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(250, 249, 246, 0.6) 0%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

/* Glassmorphism Utilities */
.glass-header {
    background: rgba(250, 249, 246, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(22, 101, 52, 0.05);
}

.hover-glow:hover {
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.08);
    border-color: rgba(22, 101, 52, 0.3);
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--accent-red);
}

nav a:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f2faf6 0%, #e6f4ea 50%, #fdfcf7 100%);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(22, 101, 52, 0.05);
    letter-spacing: 5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-main);
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-gold) 100%);
    color: #fff;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 101, 52, 0.25);
    filter: brightness(1.05);
}

/* Sections General */
.section {
    padding: var(--section-padding);
}

/* About Section */
.about-text {
    padding: 50px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-text p {
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Bases Section */
.bases-section {
    position: relative;
}

.bases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.base-card {
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.base-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: rgba(22, 101, 52, 0.05);
}

.base-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.base-card:hover .base-img {
    transform: scale(1.08);
}

.base-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.base-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.base-info p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Honor Wall */
.honor-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.honor-card {
    width: min(350px, 100%);
    overflow: hidden;
    text-align: center;
    transition: var(--transition-smooth);
}

.honor-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 20px;
    background: rgba(22, 101, 52, 0.02);
}

.honor-info {
    padding: 20px;
}

.honor-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.honor-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Celebrity Photo Wall - Masonry Grid */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
    padding: 20px 0;
}

.photo-card {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px; /* Slightly sharper for photos */
}

.photo-card img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.photo-caption {
    padding: 15px;
    background: rgba(255, 255, 255, 0.85);
    border-top: 1px solid var(--border-glass);
    text-align: left;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.photo-caption h4 {
    color: var(--primary-gold);
    font-size: 1.05rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    font-weight: bold;
}

.photo-caption p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0;
}

.photo-card:hover img,
.photo-card.active img {
    transform: scale(1.03);
}

/* Footer */
.glass-footer {
    background: rgba(250, 249, 246, 0.95);
    border-top: 1px solid var(--border-glass);
    padding: 60px 20px 20px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.85rem;
}

/* Scroll Animations (Intersection Observer Targets) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Responsive */
@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    header {
        position: absolute;
        padding: 20px 15px;
        flex-direction: column;
        gap: 12px;
    }
    
    .bases-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .masonry-grid {
        column-count: 1;
    }
    
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 140px 20px 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-text {
        padding: 30px 15px;
    }
    
    .photo-caption {
        padding: 12px 10px;
    }
    
    .photo-caption h4 {
        font-size: 0.95rem;
    }
    
    .photo-caption p {
        font-size: 0.8rem;
    }
}

/* About Tabs */
.about-tabs-container {
    margin-top: 30px;
}

.about-tabs-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 15px rgba(22, 101, 52, 0.1);
    background: rgba(22, 101, 52, 0.05);
}

.about-tabs-content {
    position: relative;
    min-height: 250px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-pane.active {
    display: block;
}

.tab-card {
    padding: 40px;
    text-align: left;
}

.tab-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: bold;
}

.tab-card p {
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.tab-card p:last-child {
    margin-bottom: 0;
}

.tab-card.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-block {
    text-align: left;
}

.info-block h3 {
    margin-bottom: 15px;
}

.info-block ul {
    list-style: none;
    padding-left: 0;
}

.info-block li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.info-block li strong {
    color: var(--primary-gold);
}

.herb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.herb-tags span {
    background: rgba(22, 101, 52, 0.06);
    color: var(--accent-red);
    border: 1px solid rgba(22, 101, 52, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.herb-tags span:hover {
    background: var(--accent-red);
    color: #fff;
    border-color: var(--accent-red);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .tab-card.grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tab-card {
        padding: 30px 20px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Media Section */
.media-tabs-header {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.media-tab-btn {
    padding: 10px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.media-tab-btn:hover,
.media-tab-btn.active {
    color: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 15px rgba(22, 101, 52, 0.1);
    background: rgba(22, 101, 52, 0.05);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.media-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transition: var(--transition-smooth);
}

.media-badge {
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 15px;
}

.media-badge.video {
    background: rgba(22, 101, 52, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(22, 101, 52, 0.25);
}

.media-badge.article {
    background: rgba(181, 148, 50, 0.15);
    color: var(--primary-gold);
    border: 1px solid var(--border-glass);
}

.media-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--accent-red);
    font-family: var(--font-heading);
}

.media-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.media-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.media-link:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Image Zoom Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 249, 246, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-container {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.active .modal-content-container {
    transform: scale(1);
}

.modal-content {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    border: 1.5px solid rgba(22, 101, 52, 0.2);
    box-shadow: 0 10px 40px rgba(22, 101, 52, 0.08), 0 0 30px rgba(181, 148, 50, 0.06);
    background: rgba(255, 255, 255, 0.6);
}

.modal-caption {
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(22, 101, 52, 0.04);
}

.modal-caption h4 {
    color: var(--accent-red);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.modal-caption p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-muted);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(22, 101, 52, 0.03);
    border: 1px solid rgba(22, 101, 52, 0.08);
    z-index: 2100;
}

.modal-close:hover {
    color: var(--accent-red);
    background: rgba(22, 101, 52, 0.08);
    border-color: var(--accent-red);
    transform: rotate(90deg);
}

/* Navigation Buttons */
.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    font-size: 24px;
    padding: 16px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition-smooth);
    user-select: none;
    z-index: 2050;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}

.modal-prev {
    left: 40px;
}

.modal-next {
    right: 40px;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(22, 101, 52, 0.08);
    border-color: var(--accent-red);
    color: var(--accent-red);
    box-shadow: 0 0 15px rgba(22, 101, 52, 0.1);
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
    .modal-prev,
    .modal-next {
        width: 44px;
        height: 44px;
        font-size: 18px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.9);
    }
    .modal-prev {
        left: 15px;
    }
    .modal-next {
        right: 15px;
    }
    .modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    .modal-caption {
        padding: 12px 18px;
        border-radius: 20px;
        max-width: 95%;
    }
    .modal-caption h4 {
        font-size: 1.05rem;
    }
    .modal-caption p {
        font-size: 0.85rem;
    }
}
