/* Premium CSS Styling */
:root {
    --bg-dark: #070707;
    --bg-card: #0f0f0f;
    --text-main: #f0f0f0;
    --text-muted: #8c8c8c;
    --gold: #cba153;
    --gold-dim: rgba(203, 161, 83, 0.2);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section with Background Image */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-image: radial-gradient(circle at center, rgba(15, 15, 15, 0.7) 0%, rgba(7, 7, 7, 0.95) 100%),
                      url(pics/hero.jpg); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid #1a1a1a;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin-top: 5rem;
    z-index: 10;
}

.subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.separator {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 2rem auto;
}

.hero-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--gold);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* Grid & Cards */
.cocktail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.cocktail-card {
    background-color: var(--bg-card);
    border: 1px solid #1f1f1f;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cocktail-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dim);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.img-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.cocktail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cocktail-card:hover .cocktail-img {
    transform: scale(1.05);
}

.cocktail-info {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cocktail-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cocktail-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.8;
    flex-grow: 1;
}

.ingredients-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.ingredients {
    list-style-type: none;
}

.ingredients li {
    font-size: 0.85rem;
    padding-left: 0;
    margin-bottom: 0.5rem;
    color: #b3b3b3;
    display: flex;
    align-items: center;
}

.ingredients li::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 50%;
    margin-right: 12px;
}

/* About Section */
.about-section {
    padding: 10rem 0;
    background-color: #0a0a0a;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.separator-left {
    width: 50px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    filter: grayscale(30%) contrast(110%);
    border: 1px solid var(--gold-dim);
}

/* Footer & Socials */
footer {
    background-color: #050505;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #111;
}

footer h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

footer p {
    color: #ffffff; /* White copyright */
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
}

.social-links a:hover {
    color: var(--gold);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 2.8rem; }
    .nav-links { display: none; }
    .about-flex { gap: 2rem; }
    .about-text h2 { font-size: 2.2rem; }
}