/* CSS Variables for Brand Identity */
:root {
    --primary-color: #7a0019; /* Deep Maroon */
    --secondary-color: #d4af37; /* Gold */
    --accent-purple: #8e44ad;
    --accent-pink: #e84393;
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
    --bg-light: #ffffff;
    --bg-gray: #f4f6f9;
}

body {
    font-family: 'Inter', sans-serif; /* Modern typography */
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Gradient Utilities */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a0010 100%);
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Styling (Premium Look) */
.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-color), #a20023);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 0, 25, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 0, 25, 0.6);
    color: white;
}

.btn-secondary-custom {
    background: linear-gradient(45deg, var(--secondary-color), #b08d29);
    color: var(--text-dark);
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    color: white;
}

/* Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.navbar-custom .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    margin: 0 10px;
}

.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
    color: var(--primary-color);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.navbar-brand span {
    color: var(--secondary-color);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    padding: 30px;
    transition: transform 0.3s ease;
}

/* Hover effects for interactive cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Dynamic Image Placeholder */
.dummy-img-container {
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9e9e9e;
    font-weight: 600;
    border-radius: 15px;
    min-height: 250px;
    width: 100%;
    border: 2px dashed #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Styling */
.form-control-custom {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-control-custom:focus {
    box-shadow: 0 0 0 0.25rem rgba(122, 0, 25, 0.25);
    border-color: var(--primary-color);
}

/* Footer Section */
.footer {
    background: #1a1a1a;
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Micro-animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Miscellaneous spacing and utilities */
.section-padding {
    padding: 80px 0;
}
.section-title {
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}
.section-title.text-start::after {
    left: 0;
    transform: none;
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
    .mobile-text-small {
        font-size: 0.95rem !important;
    }
}
