/* Brand Variables */
:root {
    --gold: #d4af37;
    --dark: #0f0f0f;
    --charcoal: #1a1a1a;
    --cream: #f4eade;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--cream);
    line-height: 1.8;
}

h1, h2, h3, .brand-font {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1rem 0;
}

.nav-link {
    color: var(--cream) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin: 0 15px;
    transition: var(--transition);
}

    .nav-link:hover {
        color: var(--gold) !important;
    }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/brand/header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-logo {
    max-width: 180px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--gold);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-custom {
    padding: 15px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

    .btn-custom:hover {
        background: var(--gold);
        color: var(--dark);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    }

/* Heritage Section */
.heritage-section {
    padding: 100px 0;
    background: var(--charcoal);
}

.badge-1974 {
    display: inline-block;
    border: 1px solid var(--gold);
    padding: 5px 15px;
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: var(--gold);
}

/* Portfolio Preview */
.portfolio-preview img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: var(--transition);
}

    .portfolio-preview img:hover {
        filter: grayscale(0%);
        transform: scale(1.02);
    }

/* Footer */
footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 30px;
}

.letter-spacing {
    letter-spacing: 2px;
}

.text-gold {
    color: var(--gold);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .portfolio-preview img {
        height: 300px;
    }
}
/* Portfolio Interactive Magic */
.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, var(--dark));
    padding: 20px;
    transition: var(--transition);
}

.project-card:hover .project-info {
    bottom: 0;
}

.project-card img {
    height: 400px; /* Force a consistent height for a clean grid */
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.05);
}
/* Carousel Styling */
.carousel-img-wrap {
    height: 50vh; /* Reduced from 80vh */
    max-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-caption {
    bottom: 10%; /* Lifted slightly for the shorter height */
    background: rgba(0,0,0,0.7);
    padding: 20px;
    border-left: 4px solid var(--gold);
    backdrop-filter: blur(8px);
    max-width: 500px;
    margin: 0 auto;
}
.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.carousel-fade .carousel-item {
    transition-duration: 1.5s; /* Smooth cross-fade */
}