/* Google Fonts */
/* 
Font mapping:
Headings/Brand: Playfair Display (Elegant, classic)
Subheadings/UI elements: Outfit (Modern geometric)
Body text: Inter (Clean, highly legible)
*/

:root {
    --primary-blue: #0A1931;
    --secondary-blue: #150E56;
    --accent-gold: #F2A154;
    --text-light: #E8E8E8;
    --text-muted: #A3A3A3;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(242, 161, 84, 0.2);
    
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    background-attachment: fixed;
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography styles */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Glassmorphism helpers */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ---------------- Navbar ---------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 25, 49, 0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 1rem 5%;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    bottom: -4px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Icon */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: var(--transition);
}

/* ---------------- Hero Section ---------------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    padding-top: 80px;
}

.sub-heading {
    font-family: var(--font-subheading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInDown 1s ease-out;
}

.main-heading {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.typing-text {
    font-weight: 600;
    color: var(--accent-gold);
}

.cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--accent-gold);
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cta-button {
    font-family: var(--font-subheading);
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: var(--accent-gold);
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(242, 161, 84, 0.3);
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(242, 161, 84, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-family: var(--font-subheading);
    font-size: 0.9rem;
    animation: fade 2s infinite alternate;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

@keyframes fade {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* ---------------- Sections Common ---------------- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.section-header p {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* ---------------- Menu Section ---------------- */
.menu-section {
    padding: 6rem 5%;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-category {
    background: rgba(242, 161, 84, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.highlight-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(242, 161, 84, 0.15);
}

.highlight-category h3 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.best-sellers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
    list-style: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.best-sellers-list li {
    padding: 10px 20px;
    background: var(--card-bg);
    border-radius: 10px;
    transition: var(--transition);
    cursor: default;
}

.best-sellers-list li:hover {
    background: rgba(242, 161, 84, 0.2);
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.menu-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    transition: var(--transition);
}

.menu-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-box h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 1rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.menu-item::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px dotted var(--text-muted);
    z-index: -1;
    opacity: 0.3;
}

.item-name {
    background: var(--primary-blue);
    padding-right: 10px;
    font-weight: 500;
}

.menu-box:hover .item-name {
    background: linear-gradient(var(--card-bg) ,var(--primary-blue)); /* just blending it */
    background: rgba(21, 14, 86, 0.8);
}
.menu-box .item-name {
    background: transparent;
}


.item-price {
    background: transparent;
    padding-left: 10px;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Fix dots between flex items */
.menu-item {
    position: relative;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.menu-item::before {
    display: none;
}
.menu-item .item-name, .menu-item .item-price {
    position: relative;
    top: 5px;
    padding-bottom: 5px;
}

/* ---------------- Reviews Section ---------------- */
.reviews-section {
    padding: 6rem 5%;
    background: rgba(0, 0, 0, 0.2);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 8rem;
    color: rgba(242, 161, 84, 0.1);
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
}

.review-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.reviewer-name {
    font-family: var(--font-subheading);
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* ---------------- Contact Section ---------------- */
.contact-section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.contact-info {
    padding: 4rem 3rem;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.contact-info .tagline {
    font-family: var(--font-subheading);
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.info-block p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.info-block a {
    color: var(--accent-gold);
    transition: var(--transition);
}

.info-block a:hover {
    color: #fff;
    text-decoration: underline;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    filter: invert(90%) hue-rotate(180deg) contrast(80%) saturate(150%) brightness(80%); /* stylistic maps */
    transition: filter 0.5s ease;
}

.map-container iframe:hover {
    filter: none;
}


/* ---------------- Footer ---------------- */
.footer {
    background: #061122;
    padding: 4rem 5% 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
    gap: 2rem;
}

.footer-brand {
    text-align: left;
}

.footer-brand h2 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: var(--font-subheading);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 968px) {
    .main-heading { font-size: 4rem; }
    .contact-container { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-brand { text-align: center; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary-blue);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .mobile-menu-btn { display: flex; }

    .main-heading { font-size: 3rem; }
    .section-header h2 { font-size: 2.5rem; }
    
    .highlight-category { padding: 2rem 1rem; }
}
