:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8529;
    --silver: #C0C0C0;
    --dark-bg: #050505;
    --text-light: #f5f5f5;
    --overlay-color: rgba(5, 5, 5, 0.85);
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow: hidden; /* Prevent scrolling for a fixed hero view */
}

/* Base styling for the hero background */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero-bg.png'); /* The generated kada image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05); /* Slight initial scale for the zoom effect */
    animation: zoomIn 25s infinite alternate linear; /* Subtle dynamic background movement */
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Dark gradient overlay to ensure text readability against the image */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(20,20,20,0.6) 100%);
    z-index: -1;
}

/* Centered Content Layout */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Main typography - Premium metallic gold effect */
.logo {
    font-size: clamp(2.5rem, 6vw, 5rem); /* Responsive sizing */
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    
    /* Elegant Gold Gradient Text */
    background: linear-gradient(to right, var(--gold-dark), var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 20px rgba(0,0,0,0.8);
}

/* Subtitle styling */
.subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
}

/* Call to action section */
.contact-section {
    margin-top: 1rem;
}

/* Glassmorphism Contact Button */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 2.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
    border-radius: 50px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Icon specifically inside the button */
.contact-btn i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: color 0.4s ease;
}

/* Hover effects for contact button */
.contact-btn:hover {
    background-color: rgba(212, 175, 55, 0.15); /* Slightly more gold background on hover */
    border-color: rgba(212, 175, 55, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    color: #fff;
}

.contact-btn:hover i {
    color: var(--gold-light);
}

/* Fade In Up Micro-animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile specific tweaks */
@media (max-width: 768px) {
    .logo {
        letter-spacing: 0.1em;
    }
    
    .subtitle {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .contact-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}
