/* Custom Font */
@font-face {
    font-family: 'SOV_poster';
    src: url('fonts/SOV_poster.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'SOV_poster';
    src: url('fonts/SOV_poster-Bold.ttf') format('truetype');
    font-weight: bold;
}

/* Root Variables */
:root {
    --primary-gold: #B8860B;
    --primary-brown: #654321;
    --dark-brown: #4A2C17;
    --cream: #FFF8DC;
    --warm-white: #FFFEF7;
    --red-accent: #B22222;
    --shadow: rgba(0, 0, 0, 0.15);
    --gradient-gold: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    --gradient-brown: linear-gradient(135deg, #654321 0%, #4A2C17 100%);
}

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

body {
    font-family: 'Sarabun', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-brown);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(184, 134, 11, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(101, 67, 33, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 4.5rem;
    font-weight: bold;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 2.2rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
    font-weight: normal;
    letter-spacing: 0.03em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 1.5rem;
}

.cta-button {
    background: var(--gradient-gold);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.6);
    filter: brightness(1.1);
}

.hero-image {
    position: relative;
}

.hero-food-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Durian Buffet Promotion Section */
.durian-promo {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.durian-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/promotion/durian_buffet.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-title {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.03em;
}

.promo-subtitle {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em;
}

.promo-description {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.promo-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.promo-highlight-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-highlight-item:hover {
    transform: translateY(-5px);
}

.promo-icon {
    font-size: 2rem;
}

.promo-button {
    display: inline-block;
    background: white;
    color: #FF6B35;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #FFD700;
    color: #FF6B35;
}

.durian-poster {
    display: none;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--warm-white);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    background: white;
    border: 2px solid var(--primary-gold);
    color: var(--primary-brown);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-section .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-section .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.gallery-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

/* Gallery Filter Animation */
.gallery-section .gallery-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.gallery-section .gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Story Section */
.story {
    padding: 100px 0;
    background: var(--warm-white);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-brown);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 0.03em;
}

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

.story-paragraph p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

.brand-name {
    color: var(--primary-brown);
    font-weight: 700;
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Menu Section */
.menu {
    padding: 100px 0;
    background: linear-gradient(135deg, #F5F5DC 0%, #E6E6C8 100%);
}

.menu .section-title {
    margin-bottom: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.menu-category {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-10px);
}

.menu-category-title {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-brown);
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-gold);
    color: white;
}

.menu-image-wrapper {
    padding: 1rem;
}

.menu-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Food Gallery */
.food-gallery {
    margin-top: 4rem;
}

.gallery-title {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 2rem;
    color: var(--primary-brown);
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Features Section */
.features {
    background: var(--light-bg);
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    color: var(--text-color);
    font-family: 'SOV_poster', serif;
    letter-spacing: 0.03em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        max-width: 1100px;
        margin: 0 auto;
    }
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0.05;
    transition: left 0.3s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--dark-brown);
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--gradient-brown);
    color: white;
}

.contact .section-title {
    color: white;
    margin-bottom: 3rem;
}

.contact .section-title::after {
    background: var(--primary-gold);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-gold);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.contact-item p {
    font-size: 1rem;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: #DAA520;
    border-bottom: 1px solid var(--primary-gold);
    transform: translateY(-2px);
}

.fb-icon {
    color: #1877F2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Embedded Map */
.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 20px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Footer */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Durian Festival Section */
.durian-festival {
    background: linear-gradient(135deg, #fff8dc 0%, #f5f5dc 100%);
    padding: 80px 0;
    position: relative;
}

.durian-festival::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="durian" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="%23daa520" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23durian)"/></svg>');
    pointer-events: none;
}

.festival-intro {
    margin-bottom: 60px;
}

.festival-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.festival-content::before {
    content: '🍈';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.festival-subtitle {
    color: #b8860b;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.festival-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.festival-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.festival-highlights .highlight-item {
    background: #fff8dc;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.festival-highlights .highlight-item:hover {
    background: #f0e68c;
    border-color: #b8860b;
    transform: translateY(-2px);
}

.festival-highlights .highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.festival-memory {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 30px;
}

/* Festival Video Section */
.festival-video {
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-title {
    font-family: 'SOV_poster', 'Sarabun', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    text-align: center;
}

.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

@media (max-width: 768px) {
    .festival-video {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .video-title {
        font-size: 1.2rem;
    }
}

/* Festival Gallery */
.festival-gallery {
    margin-bottom: 60px;
}

.festival-gallery-item.featured {
    grid-column: span 2;
}

.festival-gallery-item.featured .festival-img {
    height: 300px;
}

.festival-gallery .gallery-title {
    text-align: center;
    font-size: 2.2rem;
    color: #b8860b;
    margin-bottom: 40px;
}

.festival-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.festival-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.festival-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.festival-gallery-item:hover .festival-img {
    transform: scale(1.1);
}

.festival-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.festival-gallery-item:hover .festival-overlay {
    transform: translateY(0);
}

.festival-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #fff;
}

.festival-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Festival Reviews */
.festival-reviews {
    margin-bottom: 60px;
}

.reviews-title {
    text-align: center;
    font-size: 2.2rem;
    color: #b8860b;
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-item:hover {
    border-color: #b8860b;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-header h4 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
}

.review-platform {
    background: #4267B2;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4267B2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.review-link:hover {
    color: #365899;
    transform: translateX(5px);
}

.facebook-icon {
    font-size: 1.2rem;
}

/* Festival CTA */
.festival-cta {
    background: linear-gradient(135deg, #b8860b, #daa520);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
}

.festival-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.festival-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: white;
    color: #b8860b;
}

.cta-button.primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #b8860b;
    transform: translateY(-2px);
}

/* Responsive Design for Festival Section */
@media (max-width: 768px) {
    .durian-festival {
        padding: 60px 0;
    }

    .festival-content {
        padding: 25px;
    }

    .festival-subtitle {
        font-size: 1.8rem;
    }

    .festival-description {
        font-size: 1.1rem;
    }

    .festival-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .festival-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .festival-img {
        height: 200px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .festival-cta {
        padding: 30px 20px;
    }

    .festival-cta h3 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .festival-gallery-grid {
        grid-template-columns: 1fr;
    }

    .festival-img {
        height: 180px;
    }

    .festival-overlay {
        padding: 15px;
    }

    .festival-overlay h4 {
        font-size: 1rem;
    }

    .festival-overlay p {
        font-size: 0.85rem;
    }
}

/* View All Photos Button */
.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    background: linear-gradient(135deg, #b8860b, #daa520);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
    background: linear-gradient(135deg, #daa520, #b8860b);
}

/* Full Gallery Modal */
.full-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    overflow-y: auto;
}

.full-gallery-modal.show {
    display: block;
}

.full-gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.full-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #b8860b;
}

.full-gallery-header h3 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.full-gallery-close {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-gallery-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.full-gallery-modal .gallery-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.full-gallery-modal .gallery-tab {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.full-gallery-modal .gallery-tab:hover,
.full-gallery-modal .gallery-tab.active {
    background: #b8860b;
    border-color: #b8860b;
    color: white;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px;
}

.full-gallery-grid::-webkit-scrollbar {
    width: 8px;
}

.full-gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.full-gallery-grid::-webkit-scrollbar-thumb {
    background: #b8860b;
    border-radius: 4px;
}

.full-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.full-gallery-item:hover {
    transform: scale(1.05);
}

.full-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.full-gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.full-gallery-item:hover .overlay {
    transform: translateY(0);
}

.full-gallery-item .overlay h4 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

.full-gallery-item .overlay p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Responsive Design for Full Gallery */
@media (max-width: 768px) {
    .full-gallery-content {
        padding: 15px;
    }
    
    .full-gallery-header h3 {
        font-size: 1.4rem;
    }
    
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
        max-height: 60vh;
    }
    
    .full-gallery-modal .gallery-tabs {
        gap: 8px;
    }
    
    .full-gallery-modal .gallery-tab {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .view-all-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .full-gallery-item img {
        height: 150px;
    }
    
    .festival-gallery-item.featured {
        grid-column: span 1;
    }
    
    .festival-gallery-item.featured .festival-img {
        height: 200px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-food-img {
        height: 350px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .promo-title {
        font-size: 3rem;
    }
    
    .promo-subtitle {
        font-size: 2rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }
    
    .promo-highlight-item {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .promo-button {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 600px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 10px 40px;
    }

    .hero-food-img {
        height: 250px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-title {
        font-size: 2.5rem;
    }
    
    .promo-subtitle {
        font-size: 1.8rem;
    }

    .map-container iframe {
        height: 250px;
    }
    
    .promo-highlights {
        gap: 1rem;
    }
    
    .promo-highlight-item {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .promo-button {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-tabs {
        gap: 0.5rem;
    }
    
    .gallery-tab {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .durian-promo {
        padding: 60px 0 30px;
    }
}

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

.hero-text > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.4s; }
.hero-description { animation-delay: 0.6s; }
.hero-highlights { animation-delay: 0.8s; }
.cta-button { animation-delay: 1s; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-brown);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .nav-links {
        padding: 1rem;
    }

    .nav-links a {
        padding: 0.8rem 0;
        font-size: 1.1rem;
    }
}

/* Features Section - Mobile First */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (max-width: 767px) {
    .features {
        padding: 2rem 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        min-height: 240px;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .features {
        padding: 3rem 1.5rem;
    }
    
    .feature-card {
        padding: 2.2rem 1.8rem;
        min-height: 260px;
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}
