@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary-color: #222222; /* Deep Charcoal */
    --secondary-color: #E8DCC8; /* Warm Beige */
    --accent-color: #C9A227; /* Luxury Gold */
    --bg-color: #ffffff; /* White */
    --card-bg: #FDFBF7; /* Soft Ivory */
    --text-dark: #222222;
    --text-light: #ffffff;
    --text-muted: #666666;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    
    /* Shadow */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease-in-out;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Utilities */
.section-padding {
    padding: var(--section-padding);
}

.bg-soft-ivory {
    background-color: var(--card-bg);
}

.text-primary { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.font-heading { font-family: var(--font-heading) !important; }
.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }

/* Buttons */
.btn-primary-luxury {
    background-color: var(--accent-color);
    color: var(--text-light);
    border: 2px solid var(--accent-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-luxury:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

.btn-outline-luxury {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-luxury:hover, .btn-outline-luxury.active {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* Navbar */
.navbar-luxury {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-luxury .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.navbar-luxury .brand-logo {
    width: 65px;
    height: 65px;
    object-fit: cover;
}

.navbar-luxury .nav-link {
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
}

.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active {
    color: var(--accent-color);
}

/* Cards */
.luxury-card {
    background: var(--card-bg);
    border: none;
    border-radius: 0;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.luxury-card .card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(34, 34, 34, 0.8), rgba(34, 34, 34, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.hero-content h1 {
    color: var(--text-light);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Page Hero Section (Inner Pages) */
.page-hero-section {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero-section .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(34, 34, 34, 0.85), rgba(34, 34, 34, 0.7));
    z-index: 1;
}

.page-hero-section .container {
    position: relative;
    z-index: 2;
}

.page-hero-section h1 {
    color: var(--text-light) !important;
}

.page-hero-section p.lead {
    color: rgba(255, 255, 255, 0.8) !important;
}

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

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

.floating-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

.floating-call {
    left: 30px;
    background-color: var(--accent-color);
}

.floating-call:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Portfolio & Images */
.portfolio-item img, .card-img-top {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.project-card {
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover) !important;
}

.project-card .card-img-top {
    transition: transform 0.5s ease;
}

.project-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer h4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
    background: var(--accent-color); 
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color); 
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 50px 0;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
    bottom: 0;
}
