/* ==========================================================================
   Premium Design Styles for Gunjan Property
   ========================================================================== */

:root {
    --primary-dark: #1a1a2e;
    --primary-light: #16213e;
    --accent-gold: #d4af37;
    --accent-gold-hover: #b5952f;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition-smooth: all 0.3s ease-in-out;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

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

.bg-gold {
    background-color: var(--accent-gold) !important;
}

/* Navbar */
.premium-nav {
    background-color: var(--primary-dark) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.premium-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: var(--transition-smooth);
}

.premium-nav .nav-link:hover, .premium-nav .nav-link.active {
    color: var(--accent-gold) !important;
}

.premium-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

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

/* Hero Section / Banners */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
    animation: fadeInUp 1.2s ease-out;
}

/* Buttons */
.btn-premium {
    background-color: var(--accent-gold);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

.btn-premium:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--accent-gold);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

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

/* Property Cards */
.property-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    margin-bottom: 30px;
}

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

.property-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-img-wrap img {
    transform: scale(1.1);
}

.property-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.property-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--glass-bg);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.property-card-body {
    padding: 25px;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.property-title a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.property-title a:hover {
    color: var(--accent-gold);
}

.property-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--accent-gold);
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -30%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Footer */
.premium-footer {
    background-color: var(--primary-dark) !important;
}

.premium-footer a {
    transition: var(--transition-smooth);
}

.premium-footer a:hover {
    color: var(--accent-gold) !important;
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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