/* assets/css/style.css */
:root {
    --primary-color: #7B1E3B; /* Deep Maroon */
    --secondary-color: #F6F1EB; /* Warm Beige */
    --accent-color: #C8A24D; /* Luxury Gold */
    --bg-color: #FFFFFF; /* White */
    --card-bg: #FFFFF0; /* Soft Ivory */
    --text-color: #333333;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Typography & Colors */
.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }

/* Buttons */
.btn-premium {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-premium:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 162, 77, 0.2);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin: 0 10px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/herobg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header for inner pages */
.page-header {
    background: linear-gradient(rgba(123, 30, 59, 0.85), rgba(0, 0, 0, 0.8)), url('../images/page-header-bg.png') center/cover no-repeat !important;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Cards */
.premium-card {
    background-color: var(--card-bg);
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.premium-card .card-img-top {
    border-radius: 0;
    height: 250px;
    object-fit: cover;
}

.premium-card .card-title {
    color: var(--primary-color);
    font-family: var(--heading-font);
}

/* Icon Cards */
.icon-card {
    text-align: center;
    padding: 30px;
    background-color: white;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.icon-card:hover {
    border-color: var(--accent-color);
    background-color: var(--secondary-color);
}

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

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(5px);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    display: none;
}

.cookie-banner .btn {
    margin-left: 10px;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-whatsapp {
    right: 20px;
    background-color: #25D366;
}

.floating-call {
    right: 80px;
    background-color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section p { font-size: 1rem; }
    .section-padding { padding: 50px 0; }
    .cookie-banner { padding: 15px; text-align: center; }
    .cookie-banner .d-flex { flex-direction: column; gap: 10px; margin-top: 15px; }
    .cookie-banner .btn { margin-left: 0; width: 100%; }
}
