/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-weight: 600;
}

.contact-item i {
    color: #c41e3a;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), 
                url('background img/ShaanMenuShots_Landscape_3-min.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(212, 175, 55, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.anniversary-badge {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 24px;
    display: block;
}

.badge-subtext {
    font-size: 14px;
    opacity: 0.8;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.discount-highlight {
    margin: 40px 0;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(45deg, #c41e3a, #e74c3c);
    padding: 25px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
    transform: rotate(-3deg);
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(-3deg) translateY(0); }
    40% { transform: rotate(-3deg) translateY(-10px); }
    60% { transform: rotate(-3deg) translateY(-5px); }
}

.discount-percent {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.discount-text {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.discount-subtext {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
}

.cta-button {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #333;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    margin: 20px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.3rem;
}

.offer-details {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 20px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #111111;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #c41e3a, #e74c3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Popular Dishes Section */
.popular-dishes {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.dish-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #333;
    font-size: 2rem;
}

.dish-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.dish-card p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c41e3a;
}

.menu-cta {
    text-align: center;
}

.menu-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #c41e3a, #e74c3c);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

.menu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #111111;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.stars {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #cccccc;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #c41e3a;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    z-index: 10;
}

.close:hover {
    color: #c41e3a;
}

.modal-header {
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    color: white;
    padding: 40px 30px 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-header p {
    opacity: 0.9;
}

/* Form Styles */
form {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: #2a2a2a;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #333;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Thank You Page Styles */
.thank-you-content {
    max-width: 700px;
    max-height: 95vh;
}

.thank-you-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.thank-you-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* Coupon Styles */
.coupon-container {
    padding: 30px;
    background: #1a1a1a;
}

.coupon {
    background: #2a2a2a;
    border: 3px dashed #d4af37;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.coupon-header {
    background: linear-gradient(135deg, #c41e3a, #e74c3c);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.coupon-logo {
    height: 50px;
    width: auto;
}

.coupon-title h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.coupon-title p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.coupon-body {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.discount-amount {
    font-size: 3rem;
    font-weight: bold;
    color: #c41e3a;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.coupon-code {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.coupon-code span {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 5px;
}

.coupon-code strong {
    font-size: 1.5rem;
    color: #d4af37;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.customer-info {
    font-size: 0.9rem;
    color: #cccccc;
}

.customer-info p {
    margin-bottom: 5px;
}

.customer-info span {
    color: #ffffff;
    font-weight: 600;
}

.coupon-footer {
    background: #1a1a1a;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.coupon-footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ffffff;
}

.coupon-footer ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.coupon-footer li {
    padding: 5px 0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
    color: #cccccc;
}

.coupon-footer li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.coupon-terms {
    font-size: 0.8rem;
    color: #cccccc;
    font-style: italic;
    margin-bottom: 0 !important;
}

/* Action Buttons */
.action-buttons {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.print-button, .order-button {
    flex: 1;
    min-width: 150px;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.print-button {
    background: linear-gradient(45deg, #6c757d, #868e96);
    color: white;
}

.order-button {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.print-button:hover, .order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Reminder */
.contact-reminder {
    background: #1a1a1a;
    padding: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-reminder h4 {
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 1.3rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-option i {
    font-size: 1.5rem;
    color: #c41e3a;
    width: 30px;
    text-align: center;
}

.contact-option strong {
    display: block;
    color: #d4af37;
    margin-bottom: 3px;
}

.contact-option p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.close-button {
    width: 100%;
    background: #6c757d;
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.close-button:hover {
    background: #5a6268;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 10px 0; /* Reduced from 15px */
        position: relative; /* Change from fixed to relative on mobile */
    }
    
    .header .container {
        flex-direction: column;
        gap: 8px; /* Reduced from 15px */
    }
    
    .logo-img {
        height: 40px; /* Reduced from 60px */
        width: auto;
    }
    
    .contact-info {
        flex-direction: row; /* Keep horizontal on mobile */
        gap: 15px; /* Reduced spacing */
        text-align: center;
        font-size: 0.85rem; /* Smaller text */
    }
    
    .contact-item {
        gap: 5px; /* Reduced gap */
    }
    
    /* Adjust hero section to account for non-fixed header */
    .hero {
        min-height: 100vh;
        padding-top: 0; /* Remove top padding since header is not fixed */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .discount-percent {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid, .dishes-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 95%;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 0; /* Even smaller on very small screens */
    }
    
    .logo-img {
        height: 35px; /* Even smaller logo */
    }
    
    .contact-info {
        flex-direction: column; /* Stack vertically on very small screens */
        gap: 5px;
        font-size: 0.8rem;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .discount-amount {
        font-size: 2.5rem;
    }
    
    .coupon-code strong {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    
    .coupon, .coupon * {
        visibility: visible;
    }
    
    .coupon {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none;
        border: 2px solid #333;
    }
    
    .modal {
        display: none !important;
    }
} 