/* ============================================
   HERBS COMING SOON - BLACK & GOLD LUXURY THEME
   ============================================ */

:root {
    --bg-black: #0a0a0a;
    --bg-dark: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941e;
    --gold-glow: rgba(212, 175, 55, 0.6);
    --text-light: #f5f5f5;
    --text-gold: #ffd700;
}

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

body.herbs-coming-soon-body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    background: #000000;
    background: radial-gradient(ellipse at top, #1a1410 0%, #0a0a0a 50%, #000000 100%);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* ============================================
   GOLDEN PARTICLES BACKGROUND
   ============================================ */
.herbs-background {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.herb-particle {
    position: absolute;
    opacity: 0;
    animation: floatParticle 20s ease-in-out infinite;
}

.herb-particle::before {
    content: '✨';
    font-size: 40px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.herb-1 { 
    top: 10%; 
    left: 5%; 
    animation-delay: 0s;
    animation-duration: 18s;
}
.herb-2 { 
    top: 60%; 
    left: 10%; 
    animation-delay: 2s;
    animation-duration: 22s;
}
.herb-3 { 
    top: 25%; 
    right: 15%; 
    animation-delay: 4s;
    animation-duration: 20s;
}
.herb-4 { 
    top: 75%; 
    right: 8%; 
    animation-delay: 6s;
    animation-duration: 24s;
}
.herb-5 { 
    top: 40%; 
    left: 30%; 
    animation-delay: 1s;
    animation-duration: 19s;
}
.herb-6 { 
    top: 55%; 
    right: 25%; 
    animation-delay: 3s;
    animation-duration: 21s;
}
.herb-7 { 
    top: 15%; 
    left: 50%; 
    animation-delay: 5s;
    animation-duration: 23s;
}
.herb-8 { 
    top: 85%; 
    left: 60%; 
    animation-delay: 7s;
    animation-duration: 25s;
}

@keyframes floatParticle {
    0% { 
        transform: translate3d(0, 0, 0) rotate(0deg) scale(0.5); 
        opacity: 0; 
    }
    10% { 
        opacity: 0.7; 
    }
    50% { 
        transform: translate3d(60px, -80px, 100px) rotate(180deg) scale(1.3); 
        opacity: 0.9; 
    }
    90% { 
        opacity: 0.4; 
    }
    100% { 
        transform: translate3d(-40px, 60px, 0) rotate(360deg) scale(0.5); 
        opacity: 0; 
    }
}

/* ============================================
   LUXURY GLASS CONTAINER
   ============================================ */
.herbs-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 92%;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, 
        rgba(26, 20, 16, 0.9) 0%, 
        rgba(10, 10, 10, 0.95) 100%);
    border-radius: 30px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(212, 175, 55, 0.3),
        inset 0 2px 0 rgba(212, 175, 55, 0.2);
    animation: containerFadeIn 1.5s ease-out;
    transform-style: preserve-3d;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@keyframes containerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   GOLDEN 3D HERB LOGO
   ============================================ */
.herbs-logo-3d {
    position: relative;
    width: 280px;
    height: 280px;
    perspective: 1200px;
    flex-shrink: 0;
    animation: logoRotate 20s linear infinite;
}

@keyframes logoRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.herb-leaf {
    position: absolute;
    width: 140px;
    height: 240px;
    border-radius: 80% 20% 80% 20%;
    background: linear-gradient(135deg, 
        #ffd700 0%, 
        #d4af37 30%, 
        #b8941e 60%, 
        #8b7021 100%);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(212, 175, 55, 0.7),
        inset 0 2px 30px rgba(255, 215, 0, 0.4),
        inset 0 -2px 20px rgba(139, 112, 33, 0.6);
    transform-origin: bottom center;
    transform-style: preserve-3d;
}

.leaf-left {
    left: 10%;
    bottom: 0;
    transform: rotateY(-25deg) rotateZ(-18deg);
    animation: leafSwayLeft 4s ease-in-out infinite;
}

.leaf-right {
    right: 5%;
    bottom: 0;
    transform: rotateY(20deg) rotateZ(15deg);
    animation: leafSwayRight 5s ease-in-out infinite;
}

@keyframes leafSwayLeft {
    0%, 100% { 
        transform: rotateY(-25deg) rotateZ(-18deg) translateZ(0); 
    }
    50% { 
        transform: rotateY(-35deg) rotateZ(-25deg) translateZ(30px); 
    }
}

@keyframes leafSwayRight {
    0%, 100% { 
        transform: rotateY(20deg) rotateZ(15deg) translateZ(0); 
    }
    50% { 
        transform: rotateY(30deg) rotateZ(22deg) translateZ(30px); 
    }
}

.herb-stem {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 14px;
    height: 160px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, 
        #ffd700 0%, 
        #d4af37 30%, 
        #b8941e 60%, 
        #8b7021 100%);
    border-radius: 999px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(212, 175, 55, 0.6),
        inset 2px 0 10px rgba(255, 215, 0, 0.3);
    animation: stemGrow 3s ease-out;
}

@keyframes stemGrow {
    0% {
        height: 0;
        opacity: 0;
    }
    100% {
        height: 160px;
        opacity: 1;
    }
}

.herb-glow {
    position: absolute;
    inset: 15% 0 0;
    background: radial-gradient(ellipse at 50% 0%, 
        rgba(255, 215, 0, 0.8) 0%, 
        rgba(212, 175, 55, 0.5) 30%, 
        transparent 70%);
    filter: blur(30px);
    opacity: 1;
    mix-blend-mode: screen;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(0.9); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); 
    }
}

/* ============================================
   LUXURY CONTENT STYLING
   ============================================ */
.herbs-content {
    flex: 1;
    text-align: left;
}

.herbs-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 15px;
    color: var(--text-light);
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: titleSlideIn 1s ease-out 0.3s both, goldShimmer 3s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.herbs-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-light);
    margin: 0 0 20px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    animation: titleSlideIn 1s ease-out 0.5s both;
}

.herbs-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.9);
    max-width: 560px;
    animation: titleSlideIn 1s ease-out 0.7s both;
}

/* ============================================
   GOLDEN COUNTDOWN TIMER
   ============================================ */
.herbs-countdown {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    margin-bottom: 20px;
    animation: titleSlideIn 1s ease-out 0.9s both;
}

.countdown-item {
    text-align: center;
    padding: 18px 20px;
    min-width: 90px;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(26, 20, 16, 0.9), 
        rgba(10, 10, 10, 0.95));
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 0 2px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    animation: countdownPop 0.6s ease-out both;
}

.countdown-item:nth-child(1) { animation-delay: 1s; }
.countdown-item:nth-child(2) { animation-delay: 1.1s; }
.countdown-item:nth-child(3) { animation-delay: 1.2s; }
.countdown-item:nth-child(4) { animation-delay: 1.3s; }

@keyframes countdownPop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    70% {
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.countdown-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(212, 175, 55, 0.6);
    border-color: rgba(212, 175, 55, 0.7);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    animation: numberFlip 1s ease infinite;
}

@keyframes numberFlip {
    0%, 95% { transform: rotateX(0deg); }
    50% { transform: rotateX(5deg); }
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 5px;
    color: rgba(212, 175, 55, 0.8);
}

/* ============================================
   GOLDEN SOCIAL ICONS
   ============================================ */
.herbs-social {
    display: flex;
    gap: 14px;
    margin-top: 25px;
    animation: titleSlideIn 1s ease-out 1.1s both;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-black);
    background: linear-gradient(135deg, 
        #ffd700 0%, 
        #d4af37 50%, 
        #b8941e 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.4);
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, 
        #ffd700 0%, 
        #f4d03f 100%);
    border-color: rgba(255, 215, 0, 0.9);
}

.herbs-contact {
    margin-top: 20px;
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.8);
    animation: titleSlideIn 1s ease-out 1.3s both;
}

.herbs-contact a {
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 2px solid rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.herbs-contact a:hover {
    color: #ffd700;
    border-bottom-color: var(--gold-light);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .herbs-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 24px;
        gap: 40px;
    }

    .herbs-logo-3d {
        width: 200px;
        height: 200px;
    }

    .herbs-content {
        text-align: center;
    }

    .herbs-title {
        font-size: 2.5rem;
    }

    .herbs-subtitle {
        font-size: 1.1rem;
    }

    .herbs-countdown {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 14px 16px;
    }

    .countdown-number {
        font-size: 1.6rem;
    }

    .herbs-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .herbs-title {
        font-size: 2rem;
    }

    .herbs-logo-3d {
        width: 160px;
        height: 160px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px 12px;
    }

    .countdown-number {
        font-size: 1.3rem;
    }
}
