/* 
   Equine Heritage & Elite Bloodline - Global Styles
   Brand Identity: Equestrian Chic, Leather, Brass, Wood
*/

:root {
    --burgundy: #4A0E0E;
    --leather-brown: #8B4513;
    --triumph-gold: #D4AF37;
    --brass: #B8860B;
    --off-white: #F5F5DC;
    --dark-wood: #2C1A12;
}

body {
    background-color: var(--burgundy);
    color: var(--off-white);
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.signature-font {
    font-family: 'Great Vibes', cursive;
    text-transform: none;
}

/* Leather Stitching Effect */
.leather-card {
    background-color: var(--leather-brown);
    border: 2px solid var(--dark-wood);
    position: relative;
    padding: 20px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.leather-card::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.leather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

.leather-card:hover::before {
    border-color: var(--triumph-gold);
}

/* Brass Buttons */
.btn-brass {
    background: linear-gradient(145deg, #D4AF37, #B8860B);
    color: var(--dark-wood);
    border: 1px solid var(--dark-wood);
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.btn-brass:hover {
    background: linear-gradient(145deg, #B8860B, #D4AF37);
    color: #000;
    box-shadow: 0 0 15px var(--triumph-gold);
}

/* Navigation */
.navbar {
    background-color: rgba(44, 26, 18, 0.95);
    border-bottom: 2px solid var(--triumph-gold);
}

.nav-link {
    color: var(--off-white) !important;
    margin: 0 15px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--triumph-gold) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(74, 14, 14, 0.7), rgba(74, 14, 14, 0.7)), url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    border-bottom: 5px solid var(--leather-brown);
}

/* Footer */
footer {
    background-color: var(--dark-wood);
    padding: 50px 0;
    border-top: 3px solid var(--triumph-gold);
}

/* Animations */
@keyframes gallop {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.gallop-bg {
    opacity: 0.05;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 10rem;
    pointer-events: none;
    animation: gallop 0.5s infinite ease-in-out;
}
