/* RAE Imports - Main Stylesheet */

:root {
    --accent-color: #b8860b;
    --accent-rgb: 184, 134, 11;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #f5f5f5;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    background-color: var(--dark-bg) !important;
    border-bottom: 2px solid var(--accent-color);
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    font-size: 20px;
    margin-right: 10px;
    font-family: 'Cormorant Garamond', serif;
}

.brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.navbar-nav .nav-link {
    color: #ccc !important;
    transition: color 0.3s;
    margin: 0 10px;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3)), url('https://d2xsxph8kpxj0f.cloudfront.net/310519663584828283/gfgaeEaJYBCkbDY2EsP2mW/hero-exotic-car-1-dBvwG7HgQwRqZ7A8mccezk.webp');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-accent:hover {
    background-color: #9a7009;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
    color: white;
}

.btn-outline-accent {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 10px 28px;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-outline-accent:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Section Styling */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto 20px;
}

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

/* Service Cards */
.service-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Forms */
.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    font-family: 'Lato', sans-serif;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

/* Admin Panel */
.admin-container {
    min-height: 100vh;
    background-color: var(--light-bg);
}

.admin-header {
    background-color: var(--dark-bg);
    color: white;
    padding: 30px 0;
    margin-bottom: 30px;
}

.admin-header h1 {
    margin: 0;
}

.table-hover tbody tr:hover {
    background-color: rgba(184, 134, 11, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Utility Classes */
.bg-accent {
    background-color: var(--accent-color) !important;
}

.bg-dark-custom {
    background-color: var(--dark-bg) !important;
}

.text-muted-custom {
    color: #666;
}

.divider {
    height: 1px;
    background-color: #eee;
    margin: 30px 0;
}
