:root {
    /* Gold Palette from Logo */
    --gold-light: #FBF0A8;
    --gold-primary: #D4A820;
    --gold-mid: #C8960C;
    --gold-dark: #A07008;
    
    /* Dark Theme with Gold Nuance */
    --bg-dark: #120e0a; /* Subtle dark brown/gold */
    --bg-darker: #0a0805; 
    --bg-card: #1c1610;
    --text-main: #EFEBE4;
    --text-muted: #A89F91;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #FFF;
}

a {
    text-decoration: none;
    color: inherit;
}

.gold-text {
    background: linear-gradient(to right, var(--gold-light), var(--gold-primary), var(--gold-mid));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold-primary);
}

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

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-dark));
    color: #FFF;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--gold-primary);
    color: var(--gold-light);
    box-shadow: 0 0 15px rgba(212, 168, 32, 0.3);
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 168, 32, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 120px;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo {
    height: 80px;
}

/* --- Floating Logo --- */
.floating-logo {
    position: fixed;
    left: 30px;
    bottom: 50px;
    width: 90px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    filter: drop-shadow(0 0 15px rgba(212, 168, 32, 0.2));
}

.floating-logo.visible {
    opacity: 0.4;
    visibility: visible;
}

.floating-logo:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}

.floating-logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--gold-primary);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    font-family: 'Cinzel', serif;
}

/* --- Common Sections --- */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-primary);
}

.section-title.left {
    text-align: left;
}

.section-title.left::after {
    left: 0;
    transform: none;
}

/* --- Services --- */
.services {
    background-color: var(--bg-darker);
}

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

.service-card {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 168, 32, 0.3);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* --- Gallery Layout --- */
.gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gallery-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.gallery-image {
    position: relative;
    border-radius: 8px;
}

.gallery-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-dark);
    border-radius: 4px;
    z-index: 1;
}

/* --- Contact --- */
.contact {
    background-color: var(--bg-darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-block p, .info-block a {
    color: var(--text-main);
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--gold-light);
}

.small-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-success-msg {
    margin-top: 1rem;
    padding: 1rem;
    background-color: rgba(46, 125, 50, 0.1);
    border: 1px solid #2e7d32;
    color: #81c784;
    border-radius: 4px;
    text-align: center;
}

/* --- Footer --- */
footer {
    background-color: #000;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 168, 32, 0.1);
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .contact-grid, .gallery-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none; /* simple mobile hide for now */
    }
}
