@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --gold: #d4af37; /* Real Gold Color */
    --gold-dim: rgba(212, 175, 55, 0.4);
    --black: #050505; /* Deepest Black */
    --dark-grey: #0a0a0a;
    --text-white: #f0f0f0;
    --text-grey: #a0a0a0;
    --border: 1px solid var(--gold-dim);
    --box-shadow: 0 20px 50px rgba(0,0,0,0.9);
}

/* Luxury Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }

* {
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .4s cubic-bezier(0.25, 1, 0.5, 1); /* Elegant Slow Ease */
}

body {
    background-color: var(--black);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}

/* Typography Global */
h1, h2, h3 { font-family: 'Playfair Display', serif; letter-spacing: 1px; }
p { font-weight: 300; line-height: 2; letter-spacing: 0.5px; color: var(--text-grey); }

/* Header - Minimalist */
.header {
    background: rgba(5, 5, 5, 0.9); /* Almost solid black */
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header .logo {
    font-size: 2.8rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}
.header .logo i { color: var(--gold); padding-right: 1rem;}

.header .navbar a {
    margin: 0 1.5rem;
    font-size: 1.4rem;
    color: var(--text-grey);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
}

.header .navbar a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0%; height: 1px; background: var(--gold); transition: .3s;
}
.header .navbar a:hover { color: var(--gold); }
.header .navbar a:hover::after { width: 100%; }

.header .icons div { color: #fff; cursor: pointer; font-size: 2.2rem; margin-left: 2rem; }
.header .icons div:hover { color: var(--gold); transform: scale(1.1); }
#menu-btn { display: none; }

/* Hero Section - Cinematic */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 70% 50%, #151515 0%, #000 70%);
    padding: 0 9%;
}

.home .content { max-width: 60rem; z-index: 10; }
.home .content h3 {
    font-size: 7rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.home .content h3 span { color: var(--gold); font-style: italic; }

.home .content p { font-size: 1.8rem; margin-bottom: 3rem; }

.home .image img {
    width: 55vw;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 80px rgba(212, 175, 55, 0.15)); /* Gold Glow */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* About - Editorial Layout */
.about .row {
    display: flex;
    align-items: center;
    background: transparent; /* No Box Background */
    flex-wrap: wrap;
    gap: 4rem;
    padding: 5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05); /* Divider Line */
}

.about .row .image { flex: 1 1 40rem; position: relative; }
.about .row .image img { width: 100%; border-radius: 2px; filter: sepia(30%); transition: .5s; }
.about .row:hover .image img { filter: sepia(0%); }

/* Stylish Border around Image */
.about .row .image::before {
    content: ''; position: absolute; top: -15px; left: -15px;
    height: 100%; width: 100%; border: 1px solid var(--gold);
    z-index: -1; transition: .5s;
}
.about .row:hover .image::before { top: 15px; left: 15px; }

.about .row .content { flex: 1 1 40rem; }
.about .row .content h3 { font-size: 4rem; color: #fff; margin-bottom: 1.5rem; }

/* Menu - Grid with Gold Borders */
.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
}

.menu .box-container .box {
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05); /* Very subtle border */
    position: relative;
    background: transparent;
}

/* Elegant Hover Effect */
.menu .box-container .box:hover {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,1) 100%);
    transform: translateY(-5px);
}

.menu .box-container .box img { height: 12rem; margin-bottom: 2rem; filter: brightness(0.9); }
.menu .box-container .box:hover img { filter: brightness(1.2); transform: scale(1.1); }

.menu .box-container .box h3 { font-size: 2.2rem; color: #fff; margin: 1rem 0; }
.menu .box-container .box .price { color: var(--gold); font-size: 2.4rem; font-family: 'Playfair Display', serif; }
.menu .box-container .box .price span { color: #555; font-size: 1.6rem; text-decoration: line-through; margin-left: 1rem; }

/* Reviews - Minimalist Typography */
.review .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.review .box-container .box {
    border: none;
    border-left: 1px solid var(--gold); /* Left Gold Line only */
    padding: 3rem;
    background: linear-gradient(45deg, #080808, #0a0a0a);
    text-align: left; /* Editorial Style */
}

.review .box-container .box p { font-style: italic; color: #ccc; margin-bottom: 2rem; }
.review .box-container .box .user { height: 6rem; width: 6rem; border-radius: 50%; margin-right: 1.5rem; float: left;}
.review .box-container .box h3 { font-size: 1.8rem; color: var(--gold); padding-top: 1rem; }
.review .box-container .box .stars i { font-size: 1.2rem; color: var(--gold); }

/* Gallery - Clean Grid */
.gallery .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery .box-container .box {
    height: 30rem;
    overflow: hidden;
    position: relative;
    cursor: crosshair;
}

.gallery .box-container .box img {
    height: 100%; width: 100%; object-fit: cover;
    transition: transform 1s ease;
    filter: grayscale(80%); /* Artistic B&W feel */
}

.gallery .box-container .box:hover img { transform: scale(1.1); filter: grayscale(0%); }

/* Contact - Professional Form */
.contact .row {
    display: flex;
    background: #080808;
    flex-wrap: wrap;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact .row .map { flex: 1 1 45rem; width: 100%; min-height: 450px; opacity: 0.8; mix-blend-mode: luminosity; }
.contact .row form { flex: 1 1 45rem; padding: 6rem 4rem; text-align: center; }
.contact .row form h3 { font-size: 3.5rem; color: #fff; margin-bottom: 3rem; }

.contact .row form .inputBox {
    display: flex; align-items: center; margin-bottom: 2rem;
    background: transparent;
    border-bottom: 1px solid #333; /* Only Bottom Border */
    padding: 1.5rem 0;
}

.contact .row form .inputBox span { color: var(--gold); font-size: 1.8rem; padding-right: 1.5rem; }
.contact .row form .inputBox input { width: 100%; background: none; color: #fff; font-size: 1.6rem; }
.contact .row form .inputBox:focus-within { border-bottom-color: var(--gold); }

/* Footer - Simple */
.footer { background: #000; padding: 4rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer .credit { font-size: 1.6rem; color: #666; margin-top: 2rem; }
.footer .credit span { color: var(--gold); }

/* Global Components */
.heading { text-align: center; color: #fff; font-size: 5rem; margin-bottom: 5rem; font-weight: 400; }
.heading span { color: var(--gold); font-style: italic; font-weight: 700; }

.btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1.2rem 4rem;
    font-size: 1.5rem;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    cursor: pointer;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5rem;
}

.btn:hover { background: var(--gold); color: #000; box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }

section { padding: 6rem 9%; }

@keyframes float { 0%, 100% { transform: translateY(0rem); } 50% { transform: translateY(-2rem); } }

/* Mobile */
@media (max-width: 768px) {
    #menu-btn { display: inline-block; }
    .header .navbar {
        position: absolute; top: 100%; right: -100%;
        background: #000; width: 30rem; height: 100vh;
        display: flex; flex-direction: column; justify-content: center;
        border-left: 1px solid #333;
    }
    .header .navbar.active { right: 0; }
    .home .content h3 { font-size: 4.5rem; }
    .heading { font-size: 3.5rem; }
}