/* 
 * Theme Loader - Rentaj CMS
 * Current Theme: nature 
 * Generated: 2025-10-17 00:48:36 * Data file: db.json */

/* CSS Reset and Theme Variables */
:root {
    --primary-color: #52b788;
    --secondary-color: #2d6a4f;
    --accent-color: #95d5b2;
    --light-bg: #d8f3dc;
    --dark-color: #1b4332;
    --success-color: #40916c;
    --text-color: #333333;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(82, 183, 136, 0.2);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Force theme colors to override everything */
* {
    transition: color 0.3s ease, background-color 0.3s ease !important;
}

body {
    font-family: "Lato", sans-serif !important;
    font-size: 16px !important;
    color: var(--text-color) !important;
    background-color: white !important;
    line-height: 1.6;
}

/* Typography with forced theme colors */
h1, h2, h3, h4, h5, h6 {
    font-family: "Lato", sans-serif !important;
    color: var(--dark-color) !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { 
    font-size: 3rem !important; 
    color: var(--dark-color) !important;
}

h2 { 
    font-size: 2.5rem !important; 
    color: var(--dark-color) !important;
}

h3 { 
    font-size: 1.75rem !important; 
    color: var(--dark-color) !important;
}

p {
    color: var(--text-color) !important;
}

/* Container */
.container {
        max-width: 100% !important;
    padding: 0 15px !important;
    }

/* Header Styles - FORCED */
header {
    background: white !important;
    box-shadow: var(--shadow) !important;
        position: relative !important;
    }

/* Navigation Links */
.nav-links a {
    color: var(--text-color) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.nav-links a:hover {
    color: var(--primary-color) !important;
}

/* Logo */
.logo, .logo a {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

/* Theme-specific header styles */

/* Hero Section - FORCED */
.hero {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%) !important;
    position: relative !important;
        color: white !important;
    }

.hero-content h1,
.hero-content p {
        color: white !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    }

/* Buttons - COMPLETELY OVERRIDE */
.btn,
button[type="submit"],
.submit-btn {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: var(--border-radius) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.btn:hover,
button[type="submit"]:hover,
.submit-btn:hover {
    background: var(--secondary-color) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

/* Hero button special styling */
.hero-content .btn {
        background: rgba(255, 255, 255, 0.95) !important;
    color: var(--primary-color) !important;
    border: 2px solid white !important;
        padding: 14px 35px !important;
    font-size: 1.1rem !important;
}

.hero-content .btn:hover {
        background: white !important;
    color: var(--secondary-color) !important;
    }

/* Cards - FORCED STYLING */
.apartment-card,
.review-card,
.feature {
    background: white !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }

.apartment-card:hover,
.review-card:hover,
.feature:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

/* Feature Icons */
.feature-icon {
    background: var(--primary-color) !important;
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    margin: 0 auto 1rem !important;
}

/* Section Titles */
.section-title {
    color: var(--secondary-color) !important;
    text-align: center !important;
    margin-bottom: 3rem !important;
    position: relative !important;
    padding-bottom: 1rem !important;
}

.section-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: var(--primary-color) !important;
    border-radius: 2px !important;
}

/* Prices */
.price {
    color: var(--primary-color) !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
}

/* Forms */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
    border: 2px solid var(--light-bg) !important;
    border-radius: var(--border-radius) !important;
    padding: 10px 15px !important;
    width: 100% !important;
    background: white !important;
    color: var(--text-color) !important;
}

.form-control:focus,
.form-select:focus,
input:focus,
select:focus {
    border-color: var(--primary-color) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1) !important;
}

/* Textarea specific styles */
textarea,
.booking-form textarea,
.form-group textarea {
    border: 2px solid var(--light-bg) !important;
    border-radius: var(--border-radius) !important;
    padding: 10px 15px !important;
    width: 100% !important;
    background: white !important;
    color: var(--text-color) !important;
    resize: vertical !important;
    min-height: 100px !important;
    font-family: "Lato", sans-serif !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

textarea:focus,
.booking-form textarea:focus {
    border-color: var(--primary-color) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1) !important;
}

/* Footer */
.modern-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
}

.modern-footer * {
    color: white !important;
}

.footer-title {
    color: white !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-links a:hover {
    color: white !important;
}

/* Language Switcher */
.lang-switcher a {
    background: var(--light-bg) !important;
    color: var(--text-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: var(--border-radius) !important;
    padding: 6px 12px !important;
    text-decoration: none !important;
}

.lang-switcher a.active,
.lang-switcher a:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

/* Back to top button */
.back-to-top {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.back-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.back-to-top:hover {
    background: var(--secondary-color) !important;
    transform: translateY(-5px) !important;
}

/* Booking link button */
.booking-link-btn {
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.booking-link-btn:hover {
    background: var(--secondary-color) !important;
    color: white !important;
}

/* Gallery */
.gallery-item {
    border-radius: var(--border-radius) !important;
    overflow: hidden !important;
    cursor: pointer !important;
    position: relative !important;
}

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

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

/* Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideInLeft {
    from { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.animated-fade {
    animation: fadeIn 0.8s ease-out !important;
}

section {
    animation: fadeIn 1s ease-out !important;
}

/* Theme-specific customizations */

/* Mobile responsiveness */
@media (max-width: 768px) {
    h1 { 
        font-size: calc(3rem * 0.8) !important; 
    }
    h2 { 
        font-size: calc(2.5rem * 0.8) !important; 
    }
    h3 { 
        font-size: calc(1.75rem * 0.8) !important; 
    }
    
    .container {
        padding: 0 15px !important;
    }
}

/* Print styles */
@media print {
    .back-to-top,
    .whatsapp-floating-container,
    .cookie-banner {
        display: none !important;
    }
}

/* CRITICAL: Force override any inline styles */
body * {
    /* Color overrides */
}

.hero * {
    /* Hero specific overrides */
}

section {
    background: white !important;
}

section:nth-child(even) {
    background: var(--light-bg) !important;
}

/* End of theme: nature */