/* Luxury Mobile-First CSS for GÜNES GRILL */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #FFD700;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3 {
    font-family: 'Times New Roman', serif;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

h1 {
    font-size: 3rem;
    font-weight: bold;
}

p {
    color: #ccc;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.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);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 215, 0, 0.3);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin: 1rem 0;
}

.nav-menu a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 2s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.btn.primary {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 2px solid #FFD700;
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* Weekly Offers Section */
#weekly-offers {
    padding: 5rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#weekly-offers h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.weekly-offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.weekly-offer-card:nth-child(1) { animation-delay: 0.2s; }
.weekly-offer-card:nth-child(2) { animation-delay: 0.4s; }
.weekly-offer-card:nth-child(3) { animation-delay: 0.6s; }
.weekly-offer-card:nth-child(4) { animation-delay: 0.8s; }

.weekly-offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.weekly-offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.weekly-offer-card:hover img {
    transform: scale(1.05);
}

.weekly-offer-card h3 {
    padding: 1rem;
    font-size: 1.5rem;
    color: #FFD700;
}

.weekly-offer-card p {
    padding: 0 1rem;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.weekly-offer-card .btn {
    margin: 1rem;
    display: inline-block;
}

/* Menu Page Styles */
#menu-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    overflow: hidden;
}

.menu-hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 2s ease-out;
}

.menu-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: #ccc;
}

.menu-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFD700;
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

#menu-section {
    padding: 5rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}

.menu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.menu-item-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.3);
}

.menu-item-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.menu-item:hover .menu-item-image::before {
    opacity: 1;
}

.menu-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 3rem 1.5rem 2rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    z-index: 2;
}

.menu-item:hover .menu-item-overlay {
    transform: translateY(0);
}

.menu-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    text-align: center;
}

.menu-item-overlay h3 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.menu-item-overlay p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
}

.menu-item-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.menu-item-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.menu-item-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.menu-item-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFD700;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(0, 0, 0, 0.9);
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    backdrop-filter: blur(20px);
    animation: modalFadeIn 0.3s ease-out;
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.close {
    color: #FFD700;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    opacity: 0.7;
}

/* Offers Page */
#offers {
    padding: 5rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.offers-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-card h3 {
    padding: 1rem;
    font-size: 1.5rem;
}

.offer-card p {
    padding: 0 1rem 1rem;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

/* About Page */
#about {
    padding: 5rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Page */
#contact {
    padding: 5rem 2rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: #FFD700;
    text-decoration: none;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFD700;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Contact Page Styles */
#contact-hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(0, 0, 0, 0.7) 100%),
                url('https://via.placeholder.com/1920x1080/FFD700/000?text=GUNES+GRILL+RESTAURANT') center/cover;
    text-align: center;
    color: #FFD700;
    overflow: hidden;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

#contact-main {
    padding: 5rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
}

.contact-cards .contact-card:nth-child(1) {
    grid-row: 1 / 3;
}

.contact-cards .contact-card:nth-child(2) {
    grid-row: 1 / 2;
}

.contact-cards .contact-card:nth-child(3) {
    grid-row: 2 / 3;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #000;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.contact-card p {
    color: #ccc;
    line-height: 1.6;
}

.contact-card a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #FFA500;
}

.form-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: #ccc;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    font-weight: bold;
}

.form-container {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-container.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    text-align: center;
}

.contact-form, .reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #FFD700;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.contact-form textarea,
.reservation-form textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.icon {
    color: #FFD700;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.icon:hover {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Offers Hero Section */
#offers-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(0, 0, 0, 0.7) 100%);
    overflow: hidden;
    padding: 2rem;
    text-align: center;
}

.offers-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.offers-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gift Container Grid */
#gift-offers {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gift-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Gift Box Styles */
.gift-box {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: 250px;
    margin: 0 auto;
    cursor: pointer;
    perspective: 1000px;
    transition: all 0.3s ease;
}

.gift-box:hover {
    transform: translateY(-10px);
}

.gift-box.opening {
    pointer-events: none;
}

.gift-lid {
    position: absolute;
    width: 90%;
    height: 60%;
    top: 10px;
    left: 5%;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF4757 100%);
    border-radius: 10px 10px 5px 5px;
    box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.4);
    transform-origin: center bottom;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gift-base {
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.4);
}

.gift-pattern {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.1) 20px,
        rgba(0, 0, 0, 0.1) 40px
    );
    border-radius: 0 0 15px 15px;
}

.gift-ribbon {
    position: absolute;
    width: 100%;
    height: 15px;
    top: 50%;
    left: 0;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.8), rgba(255, 215, 0, 1), rgba(255, 215, 0, 0.8));
    transform: translateY(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.gift-bow {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.gift-bow::before,
.gift-bow::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: inherit;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gift-bow::before {
    right: 100%;
    margin-right: 5px;
}

.gift-bow::after {
    left: 100%;
    margin-left: 5px;
}

.gift-sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 10%;
    left: 15%;
}

.sparkle-2 {
    top: 20%;
    right: 10%;
}

.sparkle-3 {
    bottom: 20%;
    right: 15%;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

.gift-label {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 120%;
    z-index: 10;
}

.gift-label h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #FFD700;
}

.gift-label p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Sparkle Particle Animation */
@keyframes sparkleFade {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx, 0px), var(--ty, 0px)) scale(0);
    }
}

.sparkle-particle {
    animation: sparkleFade 1.5s ease-out forwards;
}

/* Celebration Modal Styles */
.celebration-content {
    max-width: 600px !important;
    background: rgba(0, 0, 0, 0.95) !important;
    border: 2px solid rgba(255, 215, 0, 0.5) !important;
}

.celebration-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.celebration-header h2 {
    font-size: 2rem;
    color: #FFD700;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.close-modal {
    font-size: 2.5rem;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    background: none;
    padding: 0;
    line-height: 1;
}

.close-modal:hover {
    color: #FFA500;
    transform: scale(1.2);
}

.celebration-body {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.offer-reveal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.offer-image {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.offer-details h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.offer-details p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discount-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Claim Form Styles */
.claim-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.claim-form h4 {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-align: center;
}

#claim-offer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

#claim-offer-form input,
#claim-offer-form textarea {
    padding: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFD700;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#claim-offer-form input::placeholder,
#claim-offer-form textarea::placeholder {
    color: rgba(255, 215, 0, 0.5);
}

#claim-offer-form input:focus,
#claim-offer-form textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 215, 255, 0.12);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

#claim-offer-form textarea {
    resize: vertical;
    min-height: 80px;
}

.claim-btn {
    padding: 1rem !important;
    font-weight: bold;
    margin-top: 1rem;
}

.claim-btn i {
    margin-right: 0.5rem;
}

/* Success Modal */
.success-content {
    text-align: center !important;
    max-width: 450px !important;
}

.success-header {
    margin-bottom: 1.5rem;
}

.success-header h2 {
    font-size: 2rem;
    color: #FFD700;
    margin: 0;
}

.success-body {
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: scaleInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-body h3 {
    font-size: 1.6rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.success-body p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.voucher-code {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Courier New', monospace;
}

.voucher-code span {
    display: block;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.voucher-code strong {
    display: block;
    font-size: 1.5rem;
    color: #FFD700;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes scaleInBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        border: none;
    }

    .nav-menu li {
        margin: 0 1rem;
    }

    .hero-content h1 {
        font-size: 6rem;
    }

    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .offers-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .offer-card {
        flex: 1 1 300px;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    .contact-cards .contact-card:nth-child(1),
    .contact-cards .contact-card:nth-child(2),
    .contact-cards .contact-card:nth-child(3) {
        grid-row: auto;
        min-height: 200px;
    }

    .contact-card {
        padding: 2rem 1.5rem;
        min-height: 200px;
    }

    .form-tabs {
        margin-bottom: 1rem;
    }

    /* Gift responsive styles */
    .gift-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .gift-label {
        bottom: -85px;
    }

    .offer-reveal {
        grid-template-columns: 1fr 1fr;
    }

    .celebration-content {
        max-width: 700px !important;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 8rem;
    }

    .menu-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Gift responsive styles */
    .gift-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }

    .gift-box {
        max-width: 280px;
        height: 280px;
    }

    .gift-label {
        bottom: -100px;
    }

    .celebration-content {
        max-width: 800px !important;
        max-height: 90vh !important;
        overflow-y: auto;
    }

    .offer-reveal {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .offer-image {
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
