:root {
    --primary-bg: #f9f6f0;
    --text-dark: #2A1A1A;
    --text-light: #6A5A5A;
    --accent: #8A3340;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(138, 51, 64, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(106, 90, 90, 0.05) 0%, transparent 40%);
    min-height: 100vh;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

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

/* Glassmorphism utility */
.glasso {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(249, 246, 240, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--accent);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 220px;
    top: 100%;
    right: 0;
    border-radius: 12px;
    padding: 0.5rem 0;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background: rgba(138, 51, 64, 0.1);
    color: var(--accent);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(5px);
}

/* Hero Section */
.hero {
    margin-top: 3rem;
    padding: 4rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: fadeIn 1s ease-out;
}

.hero-image-wrapper {
    flex: 0 0 45%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.hero-text {
    flex: 1;
}

.tagline {
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.hero-text h1 span {
    font-style: italic;
    color: var(--accent);
}

.about-me {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Recipe Content wrapper */
.recipe-page {
    margin-top: 3rem;
    margin-bottom: 5rem;
    padding: 4rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.recipe-hero-img {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    object-fit: cover;
    max-height: 500px;
}

.recipe-content {
    max-width: 700px;
    text-align: left;
}

.recipe-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.recipe-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 500;
}

.recipe-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.recipe-content ul {
    list-style-position: inside;
    margin-bottom: 2rem;
}

.recipe-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.recipe-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Button */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: 0 10px 20px rgba(138, 51, 64, 0.2);
}

.btn-primary:hover {
    background-color: #6a2531;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(138, 51, 64, 0.3);
}

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

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    .hero-image-wrapper {
        flex: 1;
        width: 100%;
        max-width: 400px;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
}
