/* =========================================
   VARIABLES & SETUP
   ========================================= */
:root {
    --black: #050505;
    --dark-gray: #121212;
    --mid-gray: #1A1A1A;
    --light-gray: #888888;
    --white: #F8F8F8;
    --gold: #D4AF37;
    --gold-hover: #E8CA58;
    
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

p {
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* =========================================
   LAYOUT & REUSABLES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin-bottom: 2rem;
}

.title-line.center {
    margin: 0 auto 2rem auto;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-gold {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-gold-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--gold);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    transition: var(--transition);
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* =========================================
   NAVIGATION (GLASSMORPHISM)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo img {
    height: 40px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 35px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a:not(.btn-gold-outline)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-menu a:not(.btn-gold-outline):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    text-align: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.9;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-title .gold-text {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--light-gray);
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.scroll-indicator p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.ChevronAnimation {
    font-size: 1.5rem;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2); }
    100% { transform: translateY(0px); }
}

/* =========================================
   ABOUT / HISTORY SECTION
   ========================================= */
.about {
    background-color: var(--black);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-wrapper {
    position: relative;
    padding: 20px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 4px;
}

.gold-border {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 40px;
    left: 40px;
    border: 2px solid var(--gold);
    z-index: 1;
    transition: var(--transition);
}

.image-wrapper:hover .gold-border {
    transform: translate(15px, 15px);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    background-color: var(--dark-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.service-card {
    background: var(--mid-gray);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-price {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

/* =========================================
   BANNER SEPARATOR
   ========================================= */
.banner-separator {
    background-image: url('logo-black-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    padding: 8rem 0;
}

.banner-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,5,5,0.85); /* Heavy dark overlay */
}

.banner-separator .container {
    position: relative;
    z-index: 2;
}

.banner-separator h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    background-color: var(--black);
}

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

.info-items {
    margin-top: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.info-item p {
    margin-bottom: 0;
}

.info-item a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-image: url('Logo-no-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,5,5,0.7);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.map-logo {
    width: 150px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.map-overlay p {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #000;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--mid-gray);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =========================================
   ANIMATIONS & REVEALS
   ========================================= */
.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.fade-up {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

/* =========================================
   RESPONSIVE (MOBILE / TABLET)
   ========================================= */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gold-border {
        display: none;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.05);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
    }
}
