:root {
    /* Primary Color Palette */
    --gold: #D4AF37;
    --gold-light: #F1D279;
    --gold-dark: #A67C00;
    --gold-rgb: 212, 175, 55;
    /* Premium Gradient */
    --gold-gradient: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    
    --maroon: #701C1C;
    --maroon-rgb: 112, 28, 28;
    --obsidian: #0A0A0A;
    --charcoal: #1A1A1A;
    --cream: #FFFBF0;
    --cream-dark: #F5E8C7;
    --white: #FFFFFF;
    --gray: #888888;
    
    /* Textures */
    --texture-silk: radial-gradient(circle at 2px 2px, rgba(212, 175, 55, 0.05) 1px, transparent 0);
    
    /* Luxury Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Premium Shadows */
    --shadow-gold: 0 10px 40px -10px rgba(var(--gold-rgb), 0.2);
    --shadow-maroon: 0 15px 45px -12px rgba(var(--maroon-rgb), 0.35);
    
    /* Transitions */
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    
    /* Spacing */
    --section-padding: 120px 20px;
    --container-width: 1240px;
}

/* Base setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--obsidian);
    background-image: var(--texture-silk);
    background-size: 40px 40px;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.5px;
}

span {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

img {
    max-width: 100%;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Buttons */
.btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--obsidian);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(var(--gold-rgb), 0.4);
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--obsidian);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.3);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation Bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.05);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

#main-logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(var(--gold-rgb), 0.3));
}

.brand-text {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.cta-pill {
    background-color: var(--gold);
    color: var(--obsidian) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.cta-pill:hover {
    background-color: var(--white);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background: url('assets/img/hero_premium.png') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid rgba(var(--gold-rgb), 0.5);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 2px;
    height: 8px;
    background: var(--gold);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { transform: translate(-50%, 5px); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

/* Stats Section */
.stats {
    background-color: var(--obsidian);
    padding: 60px 0;
    position: relative;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: var(--charcoal);
    padding: 50px;
    padding-top: 30px;
    margin-top: -100px;
    border-radius: 10px;
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    position: relative;
    z-index: 20;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(var(--gold-rgb), 0.3);
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: var(--cream);
    color: var(--obsidian);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.img-frame {
    position: relative;
    padding: 20px;
}

.img-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--gold);
    z-index: 1;
}

.floating-img {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 20px 20px 0 rgba(112, 28, 28, 0.1);
}

.gold-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gold);
    color: var(--obsidian);
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 3;
}

.about-text {
    flex: 1.2;
}

.section-title {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--maroon);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 17px;
    color: #444;
}

.ornate-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 25px;
}

.btn-text {
    font-weight: 700;
    color: var(--maroon);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-text:hover {
    color: var(--gold);
}

/* Signature Dishes */
.signature {
    padding: var(--section-padding);
    background-color: var(--obsidian);
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
}

/* Luxury Dividers */
.divider-ornate {
    height: 60px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 5C100 5 95 15 80 15C65 15 60 5 45 5C30 5 25 15 10 15M100 5C100 5 105 15 120 15C135 15 140 5 155 5C170 5 175 15 190 15' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M100 25C100 25 95 35 80 35C65 35 60 25 45 25C30 25 25 35 10 35M100 25C100 25 105 35 120 35C135 35 140 25 155 25C170 25 175 35 190 35' stroke='%23D4AF37' stroke-opacity='0.4' stroke-width='1' stroke-linecap='round'/%3E%3Ccircle cx='100' cy='15' r='3' fill='%23D4AF37'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 40px 0;
    opacity: 0;
    transform: scaleX(0.5);
    transition: var(--transition-slow);
}

.divider-ornate.revealed {
    opacity: 1;
    transform: scaleX(1);
}

/* Section Title Enhancements */
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    text-align: center;
}

.section-title span {
    display: block;
    font-size: 0.5em;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.section-header.center {
    text-align: center;
    margin: 0 auto 80px;
}

.label {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 15px;
}

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

.dish-card {
    background: var(--charcoal);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid rgba(var(--gold-rgb), 0.1);
}

.dish-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
}

.dish-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.dish-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dish-card:hover img {
    transform: scale(1.1);
}

.dish-info {
    padding: 30px;
}

.dish-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--gold);
}

.dish-info p {
    font-size: 15px;
    opacity: 0.8;
}

/* Services */
.services {
    padding: var(--section-padding);
    background: #111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(112, 28, 28, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.service-content h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* Gallery */
.gallery {
    padding: var(--section-padding);
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.insta-link {
    font-weight: 600;
    color: var(--gold);
    font-size: 14px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.insta-post {
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.insta-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.insta-post:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: var(--cream);
    color: var(--obsidian);
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 15rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.2;
    margin-bottom: -120px;
}

.quote {
    font-family: var(--font-heading);
    font-size: 34px;
    font-style: italic;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.author cite {
    display: block;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--maroon);
}

.author span {
    font-size: 14px;
    color: #666;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--obsidian);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-card {
    background: var(--charcoal);
    padding: 60px;
    border-radius: 15px;
    border: 1px solid rgba(var(--gold-rgb), 0.1);
}

.form-intro {
    margin: 20px 0 40px;
    opacity: 0.8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    background: #252525;
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    padding: 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 4px;
    outline: none;
    transition: var(--transition-fast);
}

input:focus, textarea:focus {
    border-color: var(--gold);
    background: #2a2a2a;
}

.contact-info {
    padding-left: 20px;
}

.info-item {
    margin-bottom: 40px;
}

.info-label {
    display: block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.info-item p {
    font-size: 20px;
    line-height: 1.5;
}

.social-links-footer {
    margin-top: 60px;
}

.social-links-footer a {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
}

.social-links-footer span {
    margin: 0 10px;
    opacity: 0.3;
}

/* Footer Styling */
.main-footer {
    padding: 80px 0 40px;
    background-color: var(--obsidian);
    border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 13px;
    opacity: 0.6;
}

.footer-copyright {
    text-align: right;
    font-size: 12px;
    opacity: 0.5;
}

/* Reveal Animations */
.dish-card, 
.service-item, 
.insta-post, 
.section-header, 
.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* End of Reveal Animations */

/* Hover Effects */
.dish-card {
    background: var(--charcoal);
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    transition: var(--transition-fast);
}

.dish-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.dish-card:hover .dish-img-wrapper img {
    transform: scale(1.1);
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .hero-title { font-size: 60px; }
    .about-flex { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .hero-actions { flex-direction: column; }
    .stats-grid { flex-direction: column; gap: 30px; }
    .stat-divider { width: 40px; height: 1px; }
    .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 30px; }
    .footer-copyright { text-align: center; }
}
