/* Design System */
:root {
    --primary: #f9a825; /* Mango Yellow */
    --accent: #ff6f00;  /* Mango Orange */
    --hot-fire: #e53935; /* Fire Red */
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --text-light: #f5f5f5;
    --text-muted: #b0b0b0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

/* Header & Nav */
header {
    width: 100%;
    height: 80px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#main-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    letter-spacing: 2px;
}

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

.nav-links li a {
    text-decoration: none;
    color: var(--text-light);
    margin: 0 20px;
    font-weight: 400;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    background: linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.9)), url('../assets/bg_hero.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content .accent {
    color: var(--primary);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-bottle {
    max-width: 100%;
    height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(249, 168, 37, 0.3));
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(2deg); }
}

/* Products Section */
.products {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.product-img-container {
    height: 400px;
    margin-bottom: 30px;
}

.product-img-container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.product-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.product-info {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: bold;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 150px 5%;
    background: #151515;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.feature-item .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 100px 5%;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.contact-container h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
}

.contact-container p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px 20px;
    background: #252525;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-color: var(--primary);
    background: #2a2a2a;
}

textarea {
    height: 150px;
    resize: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn.primary {
    background: var(--primary);
    color: #000;
}

.btn.primary:hover {
    background: var(--accent);
    transform: scale(1.05);
}

.btn.secondary {
    background: var(--text-light);
    color: #000;
    width: 100%;
}

.btn.secondary:hover {
    background: var(--primary);
    transform: scale(1.02);
}

/* Footer */
footer {
    padding: 100px 5% 50px;
    background: #000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.social-links {
    margin: 30px 0;
}

.social-links a {
    color: var(--text-muted);
    margin: 0 15px;
    text-decoration: none;
    font-size: 0.9rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 50px;
}

.warning {
    color: #444;
    font-size: 0.7rem;
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: 2px;
}

/* Animations Trigger Classes */
.fade-in { opacity: 0; animation: fadeIn 1s forwards; }
.fade-in-right { opacity: 0; animation: fadeInRight 1s forwards; }
.delay { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-content h1 { font-size: 3rem; }
    #hero-bottle { height: 50vh; margin-top: 40px; }
}
