/* ============================================
   Luton Park View Estate - Custom Styles
   Primary Color: Orange
   ============================================ */

/* ========== CSS Variables ========== */
:root {
    /* Orange Color Palette */
    --brand-orange: #FF8C00;
    --brand-orange-light: #FFA500;
    --brand-orange-dark: #E67E00;
    --brand-orange-rgb: 255, 140, 0;
    
    /* Neutral Colors */
    --dark-bg: #1a1f29;
    --dark-bg-alt: #252b38;
    --light-text: #ffffff;
    --gray-text: #cccccc;
    --gray-light: #f5f5f5;
    
    /* Spacing */
    --section-padding: 80px;
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== Navigation ========== */
.ob-navbar-glass {
    background: rgba(26, 31, 41, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.3rem;
    color: var(--light-text) !important;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link:focus {
    color: var(--brand-orange) !important;
}

.navbar-dark .nav-link.active {
    color: var(--brand-orange) !important;
}

.dropdown-menu {
    background-color: var(--dark-bg-alt);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.dropdown-item {
    color: var(--gray-text);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--brand-orange);
    color: var(--light-text);
}

/* ========== Hero Section ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-alt) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/wardown-park-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light-text);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--brand-orange);
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* ========== Buttons ========== */
.btn-primary-orange {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
    border: none;
    color: white;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(var(--brand-orange-rgb), 0.4);
    transition: all 0.3s ease;
}

.btn-primary-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--brand-orange-rgb), 0.6);
    background: linear-gradient(135deg, var(--brand-orange-light) 0%, var(--brand-orange) 100%);
}

.btn-outline-orange {
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    background: transparent;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background: var(--brand-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--brand-orange-rgb), 0.4);
}

/* ========== About Section ========== */
.about-section {
    padding: var(--section-padding) 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--brand-orange);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.about-section img {
    transition: all 3s ease;
}

.about-section img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========== Features Section ========== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--gray-light);
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-orange);
    box-shadow: 0 10px 30px rgba(var(--brand-orange-rgb), 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange-light) 0%, var(--brand-orange) 100%);
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(var(--brand-orange-rgb), 0.3);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.feature-description {
    color: #666;
    line-height: 1.7;
}

/* ========== Location Section ========== */
.location-section {
    padding: var(--section-padding) 0;
    background: var(--dark-bg);
    color: var(--light-text);
}

.location-section .section-title {
    color: var(--light-text);
}

.location-highlights {
    list-style: none;
    padding: 0;
}

.location-highlights li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
}

.location-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: bold;
    font-size: 1.3rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========== Contact Section ========== */
.contact-section {
    padding: var(--section-padding) 0;
    background: white;
}

.contact-info {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.3rem;
    color: var(--dark-bg);
}

.contact-details p {
    margin: 0;
    color: #666;
}

/* ========== Footer ========== */
footer {
    background: var(--dark-bg);
    color: var(--gray-text);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    color: var(--brand-orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray-text);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--brand-orange);
    padding-left: 5px;
}

.social-links a {
    color: var(--gray-text);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--brand-orange);
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

/* ========== Utility Classes ========== */
.text-orange {
    color: var(--brand-orange) !important;
}

.bg-orange {
    background-color: var(--brand-orange) !important;
}

.border-orange {
    border-color: var(--brand-orange) !important;
}

/* ========== Component Imports ========== */
@import 'components/_consent.css';
@import 'components/_forms.css';
