

:root {
    --primary-color: #FFA500;
    --secondary-color: #FFD700;
    --gradient-start: #FFD700;
    --gradient-end: #FFA500;
    --dark-text-color: #333;
    --light-text-color: #fff;
    --gray-bg-light: #f8f8f8;
    --gray-bg-medium: #eee;
    --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --hover-scale: 1.03;
    --transition-speed: 0.3s;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --yellow-gradient-light: linear-gradient(to right, #FFD966, #FFC107);
    --yellow-gradient-dark: linear-gradient(to right, #FFC107, #FFA000);

    --hero-overlay-color: rgba(0, 0, 0, 0.5);
    --hero-gradient-top: rgba(255, 215, 0, 0.2);
    --hero-gradient-bottom: rgba(255, 165, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text-color);
    background-color: var(--gray-bg-light);
    line-height: 1.6;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: var(--light-text-color);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
    transform: translateY(100%);
    transition: transform var(--transition-speed) ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: underline;
    margin-left: 0.25rem;
}

.cookie-link:hover {
    text-decoration: none;
}

.cookie-button {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease-in-out;
}

.cookie-button:hover {
    background-color: #d38f00;
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        padding: 1rem 2rem;
    }
    .cookie-text {
        margin-bottom: 0;
        font-size: 1rem;
        text-align: left;
    }
    .cookie-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

.main-header {
    background: var(--yellow-gradient-dark);
    box-shadow: var(--card-shadow);
    padding: 1rem 0;
    position: relative;
    z-index: 30;
}

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

.site-title {
    color: var(--dark-text-color);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    z-index: 20;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-toggle-button {
    display: none;
}

.main-nav {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    margin-top: 0;
    z-index: 40;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.nav-link {
    display: block;
    color: var(--dark-text-color);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    transition: color var(--transition-speed) ease-in-out, background-color var(--transition-speed) ease-in-out, border-radius var(--transition-speed) ease-in-out;
    border-radius: 0.5rem;
}

.nav-link:hover {
    color: var(--light-text-color);
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .site-title {
        font-size: 1.75rem;
    }
    .main-nav {
        gap: 1rem;
    }
    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (min-width: 768px) {
    .main-header {
        padding: 1.5rem 0;
    }
    .site-title {
        font-size: 2.5rem;
    }
    .main-nav {
        flex-direction: row;
        gap: 2rem;
    }
    .nav-link {
        font-size: 1.25rem;
        padding: 0.5rem 0.75rem;
    }
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text-color);
    overflow: hidden;
    text-align: center;
    padding: 4rem 1rem;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--hero-gradient-bottom), var(--hero-gradient-top));
    z-index: 5;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--hero-overlay-color);
    z-index: 10;
}

.hero-content {
    z-index: 20;
    padding: 0 1.5rem;
    max-width: 960px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(1px);
    background-color: rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    animation: fadeInScale 1.2s ease-out forwards;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s ease-out forwards 0.3s;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    background: var(--yellow-gradient-dark);
    color: var(--dark-text-color);
    padding: 1.2rem 3rem;
    border-radius: 9999px;
    font-size: 1.35rem;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
    transition: all var(--transition-speed) ease-in-out;
    transform: scale(0);
    animation: scaleIn 0.9s forwards 0.8s;
    letter-spacing: 1px;
}

.primary-button:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: var(--yellow-gradient-light);
}

.button-icon {
    margin-left: 0.75rem;
    width: 1.75rem;
    height: 1.75rem;
    transition: transform var(--transition-speed);
}

.primary-button:hover .button-icon {
    transform: translateX(0.35rem) rotate(5deg);
}

@keyframes fadeInScale {
    from { opacity: 0; transform: translateY(-50px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.7); }
    to { opacity: 1; transform: scale(1); }
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 85vh;
        padding: 6rem 1rem;
    }
    .hero-title {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
    }
    .hero-description {
        font-size: 1.5rem;
        margin-bottom: 3.5rem;
    }
    .hero-content {
        padding: 3.5rem;
    }
    .primary-button {
        padding: 1.3rem 3.5rem;
        font-size: 1.5rem;
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }
    .hero-description {
        font-size: 1.65rem;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--dark-text-color);
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.featured-restaurants-section {
    padding: 4rem 0;
    background-color: var(--gray-bg-medium);
}

.restaurant-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.restaurant-card {
    background-color: var(--light-text-color);
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--transition-speed) ease-in-out;
}

.restaurant-card:hover {
    transform: scale(var(--hover-scale));
}

.restaurant-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.restaurant-info {
    padding: 1.5rem;
    flex: 1;
}

.restaurant-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.125rem;
    margin-left: 0.5rem;
}

.restaurant-location {
    color: #555;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.chef-info {
    color: #777;
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.restaurant-description-text {
    color: #444;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.details-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: color var(--transition-speed);
}

.details-link:hover {
    color: #d38f00;
}

.details-icon {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .restaurant-card {
        flex-direction: row;
    }
    .restaurant-image {
        width: 33.333%;
        height: auto;
        border-radius: 0.5rem 0 0 0.5rem;
    }
    .restaurant-info {
        padding: 2rem;
    }
    .restaurant-name {
        font-size: 2.25rem;
    }
    .stars {
        font-size: 1.25rem;
    }
}

.explore-cuisine-section {
    padding: 4rem 0;
    background: var(--yellow-gradient-light);
}

.recipe-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.recipe-card {
    background-color: var(--light-text-color);
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform var(--transition-speed) ease-in-out;
}

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

.recipe-image {
    width: 100%;
    height: 14rem;
    object-fit: cover;
}

.recipe-info {
    padding: 1.5rem;
}

.recipe-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.recipe-description-text {
    color: #444;
    line-height: 1.5;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .recipe-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.culinary-experiences-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #FFDDAA, #FFCC88);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.experience-card {
    background-color: var(--light-text-color);
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform var(--transition-speed) ease-in-out;
}

.experience-card:hover {
    transform: scale(var(--hover-scale));
}

.experience-image {
    width: 100%;
    height: 14rem;
    object-fit: cover;
}

.experience-info {
    padding: 1.5rem;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.experience-description-text {
    color: #444;
    line-height: 1.5;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.latest-discoveries-section {
    padding: 4rem 0;
    background: var(--yellow-gradient-light);
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.article-card {
    background-color: var(--light-text-color);
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: transform var(--transition-speed) ease-in-out;
}

.article-card:hover {
    transform: scale(var(--hover-scale));
}

.article-image {
    width: 100%;
    height: 14rem;
    object-fit: cover;
}

.article-info {
    padding: 1.5rem;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.article-description-text {
    color: #444;
    line-height: 1.5;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.newsletter-section {
    background: var(--yellow-gradient-dark);
    padding: 4rem 0;
    text-align: center;
    color: var(--dark-text-color);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text-color);
}

.newsletter-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid #ccc;
    width: 100%;
    color: var(--dark-text-color);
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-speed);
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color), 0.3);
}

.newsletter-button {
    background-color: #4CAF50;
    color: var(--light-text-color);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color var(--transition-speed) ease-in-out;
    cursor: pointer;
    border: none;
}

.newsletter-button:hover {
    background-color: #45a049;
}

@media (min-width: 768px) {
    .newsletter-title {
        font-size: 2.5rem;
    }
    .newsletter-description {
        font-size: 1.25rem;
    }
    .newsletter-form {
        flex-direction: row;
        max-width: 600px;
    }
    .newsletter-input {
        width: 320px;
    }
    .newsletter-button {
        padding: 0.75rem 2.5rem;
    }
}

.contact-section {
    padding: 4rem 0;
    background-color: var(--gray-bg-light);
}

.contact-content-wrapper {
    text-align: center;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--light-text-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease-in-out;
}

.contact-form-container:hover {
    transform: translateY(-0.25rem);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-label {
    display: block;
    text-align: left;
    color: #555;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-speed);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color), 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

.form-submit-button {
    width: 100%;
    background: var(--yellow-gradient-dark);
    color: var(--dark-text-color);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease-in-out;
    cursor: pointer;
    border: none;
}

.form-submit-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background: var(--yellow-gradient-light);
}

.thank-you-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.125rem;
    color: #444;
}

.site-footer {
    background: var(--yellow-gradient-dark);
    color: var(--dark-text-color);
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-copy {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: var(--dark-text-color);
    font-size: 0.875rem;
    transition: color var(--transition-speed) ease-in-out;
}

.footer-link:hover {
    color: #555;
}

.footer-separator {
    color: #666;
    display: none;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #555;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 3rem 0;
    }
    .footer-copy {
        font-size: 1rem;
    }
    .footer-links {
        gap: 0 2rem;
    }
    .footer-link {
        font-size: 1rem;
    }
    .footer-separator {
        display: inline;
    }
    .footer-tagline {
        font-size: 0.875rem;
    }
}