:root {
    --primary: #0F172A;
    --secondary: #D4AF37; /* Premium Gold */
    --accent: #E2E8F0;
    --text-main: #334155;
    --bg-light: #F8FAFC;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

/* Hero Section with Parallax effect */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9)), url('Front1.png') center/cover no-repeat fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
    border-bottom: 5px solid var(--secondary);
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.btn-premium {
    background-color: var(--secondary);
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-premium:hover {
    background-color: #F3E5AB;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
}

/* Cards */
.info-card {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.info-card:hover::before {
    width: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #000;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.9;
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
    opacity: 1;
}

/* Floor Plan Special */
.floor-plan-wrapper {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.floor-plan-wrapper img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--accent);
}

/* Features List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--accent);
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
