/* 
  Yummy Hunny - Premium Website Styles
  Color Palette:
  Primary Green (from box): #1e3b2b
  Honey Gold: #d4af37
  Light Gold: #f3e5ab
  Warm White/Cream (from label): #fdfbf7
  Dark Text: #2c2c2c
*/

:root {
    --primary-green: #1e3b2b;
    --primary-green-light: #2c543e;
    --honey-gold: #d4af37;
    --honey-gold-hover: #b8962c;
    --bg-cream: #fdfbf7;
    --bg-cream-dark: #f5f0e1;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(30, 59, 43, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--primary-green);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--honey-gold);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    border: 2px solid var(--honey-gold);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--honey-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(30, 59, 43, 0.2);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--honey-gold);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    border: 2px solid var(--honey-gold);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--honey-gold);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--honey-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo img {
    height: 50px;
    width: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--honey-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 70px;
    background: radial-gradient(circle at 80% 20%, var(--primary-green-light) 0%, #0c1811 100%);
    overflow: hidden;
}

.hero-container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    flex: 1;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero-title span {
    color: var(--honey-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0dcd3;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Showcase Image */
.hero-image-container {
    position: relative;
    flex: 1;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-circle-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; }
}

.hero-showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    border: 3px solid var(--honey-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: rotate(-1.5deg);
    transition: var(--transition-smooth);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: rotate(-1.5deg) translateY(0); }
    50% { transform: rotate(-0.5deg) translateY(-12px); }
    100% { transform: rotate(-1.5deg) translateY(0); }
}

.hero-image-container:hover .hero-showcase-image {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15);
    animation: none;
}

.hero-accent-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--honey-gold);
    color: var(--text-dark);
    padding: 16px 20px;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 3;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-serif);
}

.badge-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.5px;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* Abstract Honey Comb Shapes in Hero */
.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: var(--honey-gold);
    opacity: 0.05;
    border-radius: 20px;
    transform: rotate(30deg);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 25%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 5%;
    background: var(--honey-gold);
    opacity: 0.03;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(30deg); }
    50% { transform: translateY(-15px) rotate(33deg); }
    100% { transform: translateY(0) rotate(30deg); }
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--honey-gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: var(--bg-cream);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--honey-gold);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.product-desc {
    color: #555;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: var(--font-serif);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--primary-green);
    color: var(--bg-cream);
    text-align: center;
}

.about-section h2 {
    color: var(--honey-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: #15291e;
    color: var(--bg-cream);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #aaa;
}

.footer-links h4, .footer-contact h4 {
    color: var(--honey-gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

.footer-links a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--honey-gold);
    transform: translateX(5px);
}

.footer-contact p {
    color: #ddd;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide on mobile for simplicity, could add hamburger */
    }
    
    .hero-container-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        margin-top: 20px;
        max-width: 100%;
    }
    
    .hero-showcase-image {
        height: 300px;
    }
    
    .hero-accent-badge {
        bottom: -15px;
        left: -10px;
        width: 90px;
        height: 90px;
    }
    
    .badge-number {
        font-size: 1.4rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
}
