/* ===================================
   HEALING BIRD - HERO SECTION STYLES
   =================================== */

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fef9f3 0%, #fdf5eb 100%);
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* === HEADER STYLES === */
.site-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #2c2c2c;
}

.logo a:hover {
    color: #c67c4e;
}

/* Navigation Menu */
.main-nav ul {
    display: flex;
    gap: 50px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: #2c2c2c;
    text-transform: uppercase;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c67c4e;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.icon-link {
    font-size: 16px;
    color: #2c2c2c;
    position: relative;
}

.icon-link:hover {
    color: #c67c4e;
}

.cart-icon .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #c67c4e;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c2c2c;
}

/* === HERO SECTION === */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* Side Labels (Vertical) */
.side-labels {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.side-labels span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #8b8b8b;
    text-transform: uppercase;
}

/* Left Content */
.hero-left {
    padding-right: 40px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 85px;
    font-weight: 400;
    line-height: 1.1;
    color: #2c2c2c;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 14px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 40px;
    max-width: 480px;
}

.cta-button {
    display: inline-block;
    background: #e67e4d;
    color: white;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(230, 126, 77, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d16d3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 77, 0.4);
}

/* Right Content (Product Visual) */
.hero-right {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Yellow Circle Background - Updated for Glow Effect */
.circle-bg {
    position: absolute;
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 25px 70px rgba(255, 193, 7, 0.35);
}

/* Oil Drop Decoration */
.oil-drop {
    position: absolute;
    top: 40px;
    left: 45%;
    width: 25px;
    height: 30px;
    background: linear-gradient(180deg, #ffd966 0%, #ffb933 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg);
    z-index: 4;
    box-shadow: 0 5px 15px rgba(255, 185, 51, 0.4);
}

/* Product Image - Replaces CSS Bottle */
.product-image {
    position: relative;
    z-index: 3;
    width: auto;
    height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.15));
}

/* Botanical Leaves - Now using images */
.leaf {
    position: absolute;
    width: 160px;
    height: auto;
    z-index: 2;
    opacity: 0.85;
    object-fit: contain;
}

.leaf-left {
    bottom: 120px;
    left: 30px;
    transform: rotate(-35deg);
}

.leaf::before,
.leaf::after {
    display: none;
}

.leaf-right {
    bottom: 180px;
    right: 50px;
    transform: rotate(45deg);
}

/* Decorative Text */
.deco-text {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #2c2c2c;
    z-index: 3;
}

.deco-rich {
    top: 120px;
    right: -30px;
}

.deco-oil {
    bottom: 100px;
    right: 20px;
}

/* === RESPONSIVE DESIGN === */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 65px;
    }
    
    .side-labels {
        left: -40px;
    }
    
    .circle-bg {
        width: 380px;
        height: 380px;
    }
    
    .hero-right {
        height: 500px;
    }
    
    .product-image {
        height: 420px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Mobile Header */
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-icons {
        gap: 15px;
    }
    
    /* Mobile Hero */
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .side-labels {
        display: none;
    }
    
    .hero-left {
        padding-right: 0;
        order: 2;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-right {
        order: 1;
        height: 450px;
    }
    
    .circle-bg {
        width: 320px;
        height: 320px;
    }
    
    .product-image {
        height: 380px;
    }
    
    .leaf-left {
        width: 140px;
        height: 160px;
        left: -30px;
    }
    
    .deco-rich,
    .deco-oil {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .circle-bg {
        width: 280px;
        height: 280px;
    }
    
    .hero-right {
        height: 400px;
    }
    
    .product-image {
        height: 340px;
    }
}