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

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #888888;
    --dark-gray: #333333;
    --accent-gold: #d4af37;
}

body {
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

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

/* Header Styles */
.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Desktop header (transparent by default) */
@media (min-width: 769px) {
    .main-header {
        background-color: transparent;
    }
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    text-decoration: none;
    color: var(--primary-white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-item:hover a {
    color: var(--accent-gold);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-white);
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu a {
    color: var(--dark-gray);
    text-transform: none;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    color: var(--primary-white);
    position: relative;
    z-index: 1;
}

.hero-logo img {
    max-width: 300px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.1;
    text-transform: none;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    display: block;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #f0f0f0;
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.cta-button {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 15px 40px;
    border: 2px solid var(--primary-black);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

.cta-button-outline {
    background-color: transparent;
    color: var(--primary-black);
    padding: 15px 40px;
    border: 2px solid var(--primary-black);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background-color: var(--primary-black);
    color: var(--primary-white);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

/* About Section */
.about-section {
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Stores Section */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

@media (max-width: 1400px) {
    .stores-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

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

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

/* Gallery Mobile Responsiveness */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .container {
        padding: 0 15px;
    }
}

.store-card {
    text-align: center;
    background-color: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.store-card:hover {
    transform: translateY(-10px);
}

.store-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.store-card h3 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.store-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.store-link {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.store-link:hover {
    color: var(--accent-gold);
}

/* Menu Section */
.menu-section {
    background-color: var(--light-gray);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-category {
    text-align: center;
}

.menu-category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.menu-category h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.menu-category p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.menu-link {
    display: inline-block;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-black);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.menu-link:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Reservation Section */
.reservation-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1481833761820-0509d3217039?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--primary-white);
    text-align: center;
}

.reservation-section .section-title {
    color: var(--primary-white);
}

.reservation-section .section-description {
    color: var(--primary-white);
}

/* Functions Section */
.functions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.functions-text ul {
    list-style: none;
    margin: 30px 0;
}

.functions-text li {
    padding: 10px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.functions-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.functions-image img {
    width: 100%;
    border-radius: 10px;
}

/* Catering Section */
.catering-section {
    background-color: var(--light-gray);
}

.catering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.catering-text ul {
    list-style: none;
    margin: 30px 0;
}

.catering-text li {
    padding: 10px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

.catering-text li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.catering-image img {
    width: 100%;
    border-radius: 10px;
}

/* Franchise Section */
.franchise-section {
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
}

.franchise-section .section-title {
    color: var(--primary-white);
}

.franchise-section .section-description {
    color: var(--primary-white);
}

.franchise-section .cta-button {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-white);
}

.franchise-section .cta-button:hover {
    background-color: transparent;
    color: var(--primary-white);
}

/* Gallery Section */
.gallery-section {
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    height: 300px;
}

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

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

/* Footer */
.main-footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 50px 0 20px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    position: relative;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin: 10px auto 0;
}

.footer-section ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.footer-section li {
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

.footer-section li::before {
    content: '•';
    color: var(--accent-gold);
    margin-right: 10px;
    font-size: 0.8rem;
}

.footer-section a {
    color: var(--primary-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-section a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    font-size: 1.5rem;
    color: var(--primary-white);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--medium-gray);
}

/* Mobile Responsive Design */
@media screen and (max-width: 768px) {
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--primary-black);
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        z-index: 1000;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle span {
        background-color: var(--primary-white);
    }
    
    .logo h1 {
        color: var(--primary-white);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 60px);
        overflow-y: auto;
        overflow-x: hidden;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 999;
        display: block !important;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        display: block;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-item > a {
        display: block;
        padding: 15px 20px;
        color: #333 !important;
        font-size: 14px;
        text-align: left;
        text-transform: none;
        letter-spacing: normal;
    }
    
    .nav-item.dropdown > a::after {
        content: '▼';
        float: right;
        font-size: 10px;
        transition: transform 0.3s;
    }
    
    .nav-item.dropdown.active > a::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        display: none !important;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f9f9f9;
        padding: 0;
        min-width: auto;
        list-style: none;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu li {
        padding: 0;
    }
    
    .dropdown-menu li a {
        display: block;
        padding: 12px 20px 12px 35px;
        color: #666 !important;
        font-size: 13px;
        text-decoration: none;
    }
    
    .nav-item a:hover {
        background-color: #f5f5f5;
        color: var(--accent-gold) !important;
    }


    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .about-content,
    .functions-content,
    .catering-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--light-gray);
    }
}

/* About Founder Section Styles */
.founder-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-text {
    text-align: center;
}

.founder-name {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.founder-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Mobile Responsive Styles for About Founder */
@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .founder-image img {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .founder-text {
        padding: 0 20px;
    }

    .founder-name {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .founder-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 50px 0;
    }

    .founder-image img {
        width: 150px;
        height: 150px;
    }

    .founder-text {
        padding: 0 10px;
    }

    .founder-name {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .founder-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}