* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #fff9f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header & Mobile Menu */
header {
    background: #ff7b54;
    /* Coral */
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

header h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

/* Desktop Navigation */
nav.desktop-nav {
    display: flex;
}

nav.desktop-nav a {
    margin: 0 15px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
    opacity: 0.9;
}

nav.desktop-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Mobile Navigation */
nav.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ff7b54;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
}

nav.mobile-nav.active {
    right: 0;
}

nav.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: #fff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

/* Overlay when mobile menu is open */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background: url('../images/home.jpeg') no-repeat center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 0 20px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: -50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(61 14 0 / 40%);
}

.hero * {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    max-width: 800px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.8;
}

.hero button {
    padding: 15px 40px;
    background: #fff;
    color: #ff7b54;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero button:hover {
    background: #ffd56b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Main Content Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    color: #ff7b54;
}

.title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ffd56b;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.special-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.special-content img {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
    object-fit: cover;
}

.special-text {
    flex: 1;
    min-width: 300px;
}

.special-content ul {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.special-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.special-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff7b54"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff7b54;
    color: white;
    border-radius: 30px;
    margin-top: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background: #ff6b42;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Recipe Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-body h4 {
    color: #ff7b54;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card-body p {
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Newsletter */
.newsletter {
    background: url('../images/newslatter.jpeg') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 140, 66, 0.8);
}

.newsletter * {
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter input {
    padding: 15px 20px;
    width: 100%;
    max-width: 400px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter button {
    padding: 15px 30px;
    background: #ffd56b;
    color: #ff7b54;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter button:hover {
    background: #ffc745;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: #f9f5f0;
    border-radius: 15px;
    overflow: hidden;
    margin: 60px auto;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.contact-form h2 {
    color: #ff7b54;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ff7b54;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff7b54;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 123, 84, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 15px 30px;
    background: #ff7b54;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #ff6b42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: #4a4a4a;
    color: white;
    padding: 60px 36px 30px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer h3 {
    color: #ffd56b;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer h1 {
    color: #ffd56b;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    transition: all 0.2s;
    opacity: 0.9;
}

.footer ul li a:hover {
    opacity: 1;
    color: #ffd56b;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* Image Credits */
.image-credit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 10px;
}

.image-credit a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.2rem;
    }

    .title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav.desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        height: 400px;
        padding: 0 15px;
    }

    .hero h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    section {
        padding: 50px 15px;
    }

    .title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-image,
    .contact-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    .hero {
        height: 350px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .title {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 20px;
    }
}

.privacy-section{
    padding: 4rem 6rem;
}

.privacy-section h2{
    font-size: 20px;
    margin-top: 15px;
}

.privacy-section p{
    margin-bottom: 20px;
}

dialog {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 500px;
      width: 90%;
      padding: 30px;
      border-radius: 10px;
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: center;
      margin: 0; /* Remove default margin */
    }
    
    dialog::backdrop {
      background: rgba(0, 0, 0, 0.5);
    }
    
    dialog h3 {
      margin-top: 0;
      color: #333;
      font-size: 24px;
    }
    
    dialog p {
      margin-bottom: 25px;
      line-height: 1.5;
    }
    
    .cookie-popup-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .cookie-popup-btn {
      padding: 10px 25px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.2s ease;
      min-width: 120px;
    }
    
    .cookie-popup-btn:hover {
      transform: translateY(-2px);
    }
    
    .cookie-popup-accept {
      background: #ff7b54;
      color: white;
    }
    
    .cookie-popup-decline {
      background: #f5f5f5;
      color: #333;
      border: 1px solid #ddd;
    }
    
    dialog a {
      color: #4CAF50;
      text-decoration: none;
      font-weight: bold;
    }
    
    dialog a:hover {
      text-decoration: underline;
    }