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

body {
    font-family: 'Lato', sans-serif; 
    line-height: 1.6;
    background-color: #faf9f6; 
    color: #2c3e50; 
}

/* Headings use the new luxury Cinzel font */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 1px;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header .logo {
    width: 120px; 
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

/* Navigation Menu Links */
nav ul li a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 2px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c5a059; 
}

/* --- LUXURY HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 0 20px;
    background-color: #1a1a1a;
}

/* Background & Overlays */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero.jpg') no-repeat center center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2), transparent);
}

/* Text Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.5em; 
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem); 
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

/* Metallic Gold Text Effect */
.text-gold-gradient {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.location-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: #a0a0a0;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

@media (min-width: 600px) {
    .hero-buttons {
        flex-direction: row; 
    }
}

.btn-gold {
    background: linear-gradient(to right, #c5a059, #d4af37);
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.btn-gold:hover {
    opacity: 0.85;
}

.btn-outline-hero {
    border: 1px solid #c5a059;
    color: #c5a059;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: #c5a059;
    color: #fff;
}

/* Scroll Line */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.scroll-indicator span {
    color: #a0a0a0;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.scroll-line {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, #c5a059, transparent);
}

/* Smooth Fade-in Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- END LUXURY HERO SECTION --- */

/* Buttons (For the rest of the site) */
.btn {
    display: inline-block;
    background-color: #c5a059;
    color: #fff;
    padding: 14px 30px;
    border-radius: 3px; 
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #c5a059;
}

.btn:hover {
    background-color: #a68442;
    border-color: #a68442;
}

.btn-outline {
    background-color: transparent;
    color: #c5a059;
}

.btn-outline:hover {
    background-color: #c5a059;
    color: #fff;
}

/* Products */
.products {
    padding: 80px 20px;
    text-align: center;
}

.products h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.product {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    padding-bottom: 30px;
    transition: transform 0.3s;
}

.product img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #eee; 
}

.product h3 {
    margin: 20px 0 10px 0;
    font-size: 1.5em;
}

.product p {
    padding: 0 20px;
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
}

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

/* About & Contact */
.about, .contact {
    padding: 80px 20px;
    text-align: center;
}

.about {
    background-color: #fff;
}

.contact {
    background-color: #faf9f6;
}

.about h2, .contact h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
}

.about p, .contact p {
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: #555;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
}

/* Mobile Responsiveness - Makes it fit perfectly on phones */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }
    nav ul li {
        margin: 5px 10px;
    }
}
/* --- GALLERY SECTION --- */
.gallery {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #a0a0a0;
    font-size: 0.85em;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    /* This automatically creates columns that fit the screen size */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1; /* Makes every photo a perfect square */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #eee; /* Light grey placeholder color */
    transition: transform 0.6s ease; /* Super smooth transition */
}

/* Luxury hover zoom effect */
.gallery-item:hover img {
    transform: scale(1.08); 
}