
:root {
    --brand-color: #f97316;
    --stone-50: #fafaf9;
    --stone-200: #e7e5e4;
    --stone-900: #1c1917;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--stone-50);
    color: var(--stone-900);
    scroll-behavior: smooth;
}

.serif-font {
    font-family: 'Playfair Display', serif;
}

/* Glassmorphism Header */
.navbar-custom {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--stone-200);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--stone-900) !important;
    position: relative;
    margin: 0 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--brand-color) !important;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.btn-brand {
    background-color: var(--brand-color);
    color: white;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-brand:hover {
    background-color: #ea580c;
    color: white;
    transform: translateY(-2px);
}

/* Recipe Cards */
.recipe-card {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.recipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img {
    transform: scale(1.08);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Circles */
.category-item img {
    border-radius: 20px;
    transition: 0.4s;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.category-item:hover img {
    transform: scale(1.05);
}

/* Newsletter */
.newsletter-section {
    background-color: var(--brand-color);
    color: white;
    padding: 80px 0;
}

.form-control-custom {
    border-radius: 50px;
    padding: 15px 25px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--stone-900);
    color: #a8a29e;
    padding: 80px 0 30px;
}

.footer-link {
    color: #a8a29e;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-link:hover {
    color: white;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #292524;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--brand-color);
    color: white;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}


/* Featured Story Section */
.featured-story-section {
    background-color: #fff;
}

.story-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.story-image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.story-image-wrapper:hover img {
    transform: scale(1.03);
}

.story-meta-badge {
    display: inline-block;
    color: var(--brand-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.stats-box {
    background: var(--stone-50);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--stone-200);
}

/* About Section Styles */
.about-section {
    background-color: var(--stone-50);
    line-height: 1.8;
}

.about-image-stack {
    position: relative;
    padding: 20px;
}

.about-image-main {
    border-radius: 40px 40px 500px 40px; /* Unique organic shape */
    object-fit: cover;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

.experience-badge {
    position: absolute;
    bottom: 10%;
    right: 0;
    background: white;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.philosophy-card {
    background: white;
    border-left: 5px solid var(--brand-color);
    padding: 30px;
    border-radius: 0 20px 20px 0;
    margin-top: 2rem;
}

.text-gradient-brand {
    background: linear-gradient(45deg, var(--stone-900), var(--brand-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cooking Video Section Styles */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-wrapper:hover .video-placeholder {
    transform: scale(1.05);
}

.video-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--stone-900);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--brand-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}