/* General Styling */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #e09838; /* Primary Vibrant (Orange/Gold) */
    --secondary-color: #7b2c0d; /* Dark Vibrant (Deep Amber/Brown) */
    --dark-color: #1A1A1A; /* Very Dark Background */
    --light-color: #2A2A2A; /* Dark Grey for cards/sections */
    --white-color: #FFFFFF;
    --gray-color: #A0A0A0; /* Lighter grey for borders */
    --text-color: #d7b68e; /* Light Vibrant (Soft Sand) for text */
    --hero-gradient-start: rgba(26, 26, 26, 0.9); /* Dark background for hero overlay */
    --hero-gradient-end: rgba(224, 152, 56, 0.9); /* Primary color for hero overlay */
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 14px 30px;
    border-radius: 50px;
    margin-top: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary-color);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

/* Header */
header {
    background: var(--light-color);
    color: var(--text-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

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

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 45px;
    margin-right: 12px;
}

header .logo h1 {
    font-size: 28px;
    color: var(--dark-color);
    font-weight: 700;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 30px;
}

header nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%), url('https://source.unsplash.com/1600x900/?wine-tasting,cocktail,food') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    padding: 120px 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
    animation: fadeIn 1s ease-out;
}

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

.hero h2 {
    font-size: 4.5rem;
    margin-bottom: 15px;
    color: var(--white-color);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Sections */
section {
    padding: 80px 0;
    text-align: center;
}

section:nth-child(even) {
    background: var(--dark-color);
}
section:nth-child(odd) {
    background: var(--light-color);
}

section h3 {
    font-size: 3.2rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

section h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: var(--primary-color);
    left: 20%;
    bottom: -15px;
    border-radius: 2px;
}

/* Features Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    background: var(--light-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

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

.feature-item p {
    font-size: 1rem;
    color: var(--text-color);
}

/* Demo Section */
.demo .video-placeholder {
    background: var(--dark-color);
    color: var(--white-color);
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.demo .video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.contact form {
    max-width: 700px;
    margin: auto;
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    text-align: left;
}

.contact .form-group {
    margin-bottom: 25px;
}

.contact label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--dark-color);
    color: var(--white-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact input[type="text"]:focus,
.contact input[type="email"]:focus,
.contact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(224, 152, 56, 0.2);
}

.contact textarea {
    resize: vertical;
    min-height: 120px;
}

.contact .btn {
    width: 100%;
    margin-top: 10px;
    font-size: 1.2rem;
    padding: 15px 20px;
}

.contact #form-message {
    margin-top: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px;
    border-radius: 8px;
}

/* Footer */
footer {
    background: var(--light-color);
    color: var(--text-color);
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    font-size: 0.95rem;
}

footer p a {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3.5rem;
    }
    .hero p {
        font-size: 1.3rem;
    }
    section h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0;
        min-height: 60vh;
    }

    .hero h2 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    header .container {
        flex-direction: column;
    }

    header .logo {
        margin-bottom: 15px;
    }

    header nav ul {
        margin-top: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav ul li {
        margin: 0 12px 10px 12px;
    }

    section {
        padding: 60px 0;
    }

    section h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        padding: 25px;
    }

    .feature-item h4 {
        font-size: 1.5rem;
    }

    .demo .video-placeholder {
        min-height: 300px;
        font-size: 1.5rem;
    }

    .contact form {
        padding: 25px;
    }

    .contact .btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }

    .hero h2 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    header .logo h1 {
        font-size: 22px;
    }
    header nav ul li {
        margin: 0 8px 8px 8px;
    }
}
}