/* Ana Stiller */
:root {
    --primary: #ff9eb6;
    --secondary: #ffc2d1;
    --accent: #ffb8d9;
    --dark: #5a3d5c;
    --light: #fff0f5;
    --white: #ffffff;
    --gray: #9e7a9e;
}

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

body {
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}



a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #ff7ca0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 158, 182, 0.4);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Pacifico', cursive;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}



.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 2.2rem !important;
    background: linear-gradient(45deg, #ff4757, var(--primary), #ff6b9d, var(--accent), #ffa502) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    background-size: 200% 200% !important;
    font-weight: 900 !important;
    margin: 0 !important;
    font-family: 'Pacifico', cursive !important;
    position: relative !important;
    animation: logoGlow 4s ease-in-out infinite, gradientShift 6s ease-in-out infinite !important;
    text-shadow: 
        2px 2px 0px rgba(255, 71, 87, 0.8),
        4px 4px 0px rgba(255, 107, 157, 0.6),
        6px 6px 0px rgba(255, 165, 2, 0.4),
        8px 8px 20px rgba(255, 158, 182, 0.5) !important;
    transform-style: preserve-3d !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

.logo-text h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(45deg, rgba(255, 71, 87, 0.3), rgba(255, 107, 157, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translate(4px, 4px) rotateX(15deg);
    filter: blur(1px);
}

.logo-text h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    color: rgba(255, 71, 87, 0.2);
    transform: translate(8px, 8px) rotateX(25deg);
    filter: blur(2px);
}

@keyframes logoGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 10px rgba(255, 158, 182, 0.4));
        transform: scale(1) rotateY(0deg);
    }
    25% {
        filter: brightness(1.3) drop-shadow(0 0 25px rgba(255, 71, 87, 0.7));
        transform: scale(1.05) rotateY(5deg);
    }
    50% {
        filter: brightness(1.5) drop-shadow(0 0 30px rgba(255, 107, 157, 0.8));
        transform: scale(1.08) rotateY(0deg);
    }
    75% {
        filter: brightness(1.3) drop-shadow(0 0 25px rgba(255, 165, 2, 0.7));
        transform: scale(1.05) rotateY(-5deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



nav ul {
    display: flex;
}

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

nav ul li a {
    font-weight: 700 !important;
    color: var(--dark) !important;
    position: relative !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-family: 'Quicksand', sans-serif !important;
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: linear-gradient(45deg, transparent, transparent) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

    nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent), #ff6b9d);
    transition: left 0.5s ease;
    z-index: -1;
    border-radius: 20px;
    will-change: left;
}

nav ul li a::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    opacity: 0;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    color: white !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(255, 158, 182, 0.4) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

nav ul li a:hover::before {
    left: 0;
}

nav ul li a:hover::after {
    opacity: 1;
}

nav ul li a.active {
    background: linear-gradient(45deg, var(--primary), var(--accent)) !important;
    color: white !important;
    transform: scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(255, 158, 182, 0.4) !important;
}

nav ul li a.active::after {
    opacity: 1;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(255, 158, 182, 0.9), rgba(255, 194, 209, 0.9)), url('https://images.unsplash.com/photo-1486427944299-d1955d23e34d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="25" cy="25" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="75" cy="75" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="75" cy="25" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="25" cy="75" r="1.5" fill="%23ffffff" opacity="0.3"/></svg>');
    background-size: 80px 80px;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
}



.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Pacifico', cursive;
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.2);
    animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

.hero h2 span {
    color: #FFFFFF;
    font-style: normal;
    background: var(--dark);
    padding: 0 10px;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    display: inline-block;
    transform: rotate(-2deg);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 500;
}

.hero .btn {
    background-color: var(--dark);
    color: var(--white);
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.hero .btn:hover {
    background-color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(90, 61, 92, 0.3);
}

.hero .btn:hover::before {
    left: 100%;
}

/* Featured Products */
.featured {
    padding: 80px 0;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

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

.product-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
    color: var(--dark);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.product-card p {
    padding: 0 20px 20px;
    color: var(--gray);
}

/* Recipes Preview */
.recipes-preview {
    background-color: var(--light);
    padding: 80px 0;
}

.recipes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.recipe-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.recipe-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recipe-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.recipe-card:hover img {
    transform: scale(1.05);
}

.recipe-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.recipe-card p {
    padding: 0 20px;
    color: var(--gray);
    flex-grow: 1;
}

.recipe-card .btn-small {
    margin: 20px;
    align-self: flex-start;
    background-color: var(--secondary);
}

.recipe-card .btn-small:hover {
    background-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 158, 182, 0.4);
}

.recipes-more {
    text-align: center;
    margin-top: 40px;
}

/* Contact Preview */
.contact-preview {
    background: url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.contact-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(90, 61, 92, 0.8);
}

.contact-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Pacifico', cursive;
}

.contact-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.1);
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Pacifico', cursive;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary);
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #444;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        background: var(--white);
        width: 100%;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        -webkit-overflow-scrolling: touch;
        will-change: transform;
    }

    nav ul.active {
        transform: translateY(0);
    }

    nav ul li {
        margin: 15px 20px;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 0.85rem !important;
        padding: 10px 18px !important;
        margin: 5px 0 !important;
        display: block !important;
    }
    
    .hero {
        padding: 80px 0;
    }

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

    .hero p {
        font-size: 1rem;
    }
    
    .recipes {
        grid-template-columns: 1fr;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 1rem;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .contact-preview {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .recipe-card h3 {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .products {
        grid-template-columns: 1fr;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
    }
    
    .splash-logo {
        width: 600px;
        height: 600px;
    }
    
    .logo-text h1 {
        font-size: 1.8rem !important;
        letter-spacing: 0.5px !important;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 375px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .btn, .btn-small {
        width: 100%;
        text-align: center;
    }
    
    .product-card, .recipe-card {
        border-radius: 15px;
    }
    
    .splash-logo {
        width: 450px;
        height: 450px;
    }
    
    .logo-text h1 {
        font-size: 1.6rem !important;
        letter-spacing: 0.3px !important;
    }
}

/* Hamburger menü stili */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    margin-left: auto;
    padding: 10px;
}

.menu-toggle i {
    color: var(--dark);
    transition: color 0.3s ease;
}

.menu-toggle:hover i {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        background: var(--white);
        width: 100%;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
        -webkit-overflow-scrolling: touch;
        will-change: transform;
    }

    nav ul.active {
        transform: translateY(0);
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    header {
        padding: 20px;
    }

    /* Products ve Recipe için grid ayarları */
    .products-grid, .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card, .recipe-card {
        max-width: 100%;
    }

    /* Hero alanı için mobil ayarları */
    .hero {
        padding: 60px 20px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* İletişim alanı için mobil ayarları */
    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 1rem;
    }
    
    /* Footer için mobil ayarları */
    footer {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content div {
        margin-bottom: 20px;
    }
}

/* Çok küçük ekranlar için ek ayarlar */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form button {
        width: 100%;
    }
}

/* Android Touch Scrolling Fix */
* {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 158, 182, 0.2);
}

/* Disable text selection on Android */
.hero, .section-title, .btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Fix for Android Chrome scrolling issues */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Android specific fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll !important;
    }
    
    .contact-preview {
        background-attachment: scroll !important;
    }
    
    body {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Hardware acceleration for smooth scrolling */
.product-card, .recipe-card {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Recipe Detail Styles */
.recipe-detail-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.detail-content {
    line-height: 1.6;
}

.detail-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f4e6, #fff5d6);
    border-radius: 12px;
    border: 2px solid #e6d7c3;
}

.detail-info-item {
    text-align: center;
    padding: 10px;
}

.detail-info-item i {
    font-size: 24px;
    color: #8B4513;
    margin-bottom: 8px;
    display: block;
}

.detail-info-item .value {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 4px;
}

.detail-info-item small {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h3 {
    color: #8B4513;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e6d7c3;
}

.detail-section ul,
.detail-section ol {
    margin: 0;
    padding-left: 20px;
}

.detail-section li {
    margin-bottom: 8px;
    color: #444;
}

.detail-tips-section {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
    margin-top: 20px;
}

.detail-tips-section h3 {
    color: #4a90e2;
    border-bottom-color: #4a90e2;
}

.back-btn {
    background: linear-gradient(135deg, #8B4513, #a0522d);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 69, 19, 0.4);
    background: linear-gradient(135deg, #a0522d, #8B4513);
}

/* Mobile responsive for recipe details */
@media (max-width: 768px) {
    .recipe-main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-image {
        height: 200px;
    }
    
    .recipe-detail-section {
        padding: 15px;
    }
}

/* Force Browser Cache Refresh - Update: 2024 */
body::after {
    content: 'Updated: 2024' !important;
    display: none !important;
} 