/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C80626; /* Bright red for burgers */
    --secondary-red: #8B0000; /* Dark red for accents */
    --gold: #FFD700; /* Golden yellow for highlights */
    --yellow: #FFC300; /* Bright yellow for calls to action */
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --green: #228B22; /* Fresh green for veg options */
    --dark-gray: #1A1A1A;
    --medium-gray: #444444;
    --light-gray: #E0E0E0;
    --font-heading: 'Montserrat', 'Bebas Neue', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--off-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(196, 30, 58, 0.95);
    padding: 15px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
}

.social-link:hover {
    color: var(--gold);
    background-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.social-link:nth-child(1):hover {
    color: var(--green);
    background-color: rgba(34, 139, 34, 0.2);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

/* Hero Carousel */
.hero-carousel {
    margin-top: 80px;
    height: 85vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.8);
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    color: var(--white);
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.4rem;
    max-width: 700px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    color: var(--light-gray);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow), var(--gold));
    color: var(--secondary-red);
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.7s forwards;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--gold), var(--yellow));
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: var(--yellow);
    transform: scale(1.4);
    box-shadow: 0 0 15px var(--gold);
    border-color: var(--white);
}

.indicator:hover {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* Menu Section */
.menu-section {
    background-color: var(--white);
    padding: 80px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.menu-category {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-red);
}

.menu-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.15);
}

.menu-category h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--secondary-red);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-category h3 i {
    color: var(--gold);
    font-size: 1.5rem;
}

.menu-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed var(--light-gray);
}

.menu-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.item-header h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-gray);
}

.item-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-red);
    background-color: rgba(196, 30, 58, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.item-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, var(--secondary-red), var(--primary-red));
    padding: 70px 0;
    color: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.info-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.info-list .note {
    font-style: italic;
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Map Section */
.map-section {
    background-color: var(--dark-gray);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(20%) contrast(1.1) sepia(20%);
}

/* The Dive Bar Section */
.dive-bar-section {
    background-color: var(--off-white);
    padding: 80px 0;
}

.dive-bar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.dive-bar-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--secondary-red);
    margin-bottom: 20px;
}

.dive-bar-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.dive-bar-text ul {
    list-style: none;
    margin: 25px 0;
}

.dive-bar-text ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--medium-gray);
}

.dive-bar-text ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.dive-bar-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.dive-bar-image img:hover {
    transform: scale(1.03);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), #000000);
    padding: 60px 0 0;
    color: var(--white);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--gold);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
    color: var(--light-gray);
    font-size: 1rem;
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
}

.footer-list li strong {
    color: var(--gold);
}

.footer-list li::before {
    content: '•';
    color: var(--primary-red);
    position: absolute;
    left: 0;
}

/* Footer logo column */
.logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo-container {
    text-align: center;
    width: 100%;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.footer-extra-image {
    text-align: center;
    width: 100%;
    max-width: 220px;
    margin-top: 10px;
}

.footer-extra-image img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--primary-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.footer-extra-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.5);
    border-color: var(--gold);
}

/* QR column */
.qr-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code {
    margin-top: 15px;
}

.qr-code img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    padding: 10px;
    background-color: var(--white);
    border: 3px solid var(--gold);
}

.qr-caption {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
    max-width: 180px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.8);
    margin-top: 60px;
    padding: 25px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.design-credit {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.design-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.design-credit a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-content h1 {
        font-size: 3.2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .dive-bar-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 70vh;
        min-height: 500px;
        margin-top: 70px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content {
        padding: 0 25px;
        align-items: center;
        text-align: center;
    }
    
    .slide-content p {
        text-align: center;
    }
    
    .social-link {
        font-size: 1.2rem;
        width: 40px;
        height: 40px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .carousel-indicators {
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-column h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list li::before {
        display: none;
    }
    
    .footer-list li {
        padding-left: 0;
    }
    
    .hero-carousel {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-category {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .footer-logo {
        width: 120px;
        height: 120px;
    }
    
    .footer-extra-image img {
        width: 180px;
    }
    
    .qr-code img {
        width: 130px;
        height: 130px;
    }
    
    .info-card {
        padding: 30px 20px;
    }
}