/* Variables for brand consistency */
:root {
    --bg-cream: #fffaf5;
    --text-brown: #5d4037;
    --gold-accent: rgba(193, 155, 118, 0.6);
}

body {
    /* background-color: #eee; */
    font-family: "Baloo 2", sans-serif;
}

.main-banner {
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-cream);
}

/* Hero Section with Image */
.hero-section {
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)), 
                url('./images/bg.jpg'); /* REPLACE WITH YOUR IMAGE URL */
    background-size: cover;
    background-position: center;
    min-height: 750px;
    position: relative;
}

.headline-container h1 {
    font-family: 'Georgia', serif;
    color: var(--text-brown);
    font-weight: 400;
}

/* The Gold Ring Overlay */
.gold-ring {
    position: absolute;
    right: 5%;
    bottom: -80px;
    width: 450px;
    height: 450px;
    border: 10px solid var(--gold-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Features Styling */
.features-section {
    background-color: var(--bg-cream);
    position: relative;
    z-index: 2; /* Ensures text stays above the ring */
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    color: var(--text-brown);
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

/* Custom Bullet Point */
.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-brown);
    font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 170px;
    }
    .headline-container h1 {
        font-size: 1.1rem;
    }
}
/* Apartment Header Styles */
.unit-plan-header {
    color: var(--text-brown);
}

.apartment-title {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.carpet-area {
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 5px;
}

/* Ornate Divider */
.divider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.gold-divider {
    width: 250px;
    height: 2px;
    background-color: #c19b76; /* The gold/bronze color */
    position: relative;
}

/* Creating the decorative diamond/dots on the divider */
.gold-divider::before, 
.gold-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: #c19b76;
}

.gold-divider::before { left: -3px; }
.gold-divider::after { right: -3px; }

.unit-plan-title {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 1.8rem;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .apartment-title { font-size: 1.8rem; }
    .carpet-area { font-size: 1.1rem; }
    .gold-divider { width: 150px; }
    .unit-plan-title { font-size: 1.4rem; }
}
/* Township Specific Styles */
.township-section {
    min-height: 800px;
}

.interactive-gallery {
    background-color: #fcf5ed;
}

.interactive-gallery .gallery-main img {
    width: 100%;
    max-height: 560px;
    height:560px;
    object-fit: cover;
}

.interactive-gallery .gallery-caption {
    color: #5d4037;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.interactive-gallery .gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.gallery-thumb {
    border: 1px solid transparent;
    padding: 0;
    background: transparent;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: block;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: #c19b76;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .interactive-gallery .gallery-thumbnails {
        grid-template-columns: 1fr;
    }
}

.township-hero {
    background: url('./images/GalleryPic7.jpg'); /* Replace with your building image */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}



.info-panel {
    background-color: #fff; /* The light blue color from your image */
    color: #444;
}

.brand-subtitle {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
}

.icon-item p {
    font-size: 0.7rem;
    margin-top: 8px;
    line-height: 1.2;
}

.icon-placeholder, .icon-sm {
    font-size: 2rem;
    margin-bottom: 5px;
}
.icon-placeholder img, .icon-sm img{
    width:50px;
}
.info-heading {
    font-family: 'Georgia', serif;
    font-weight: 400;
}

.amenity span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
}

.logo-placeholder {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 5px;
    border-top: 1px solid #444;
    display: inline-block;
    padding-top: 10px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .township-hero {
        min-height: 300px;
    }
}
/* Location Section Styles */
.headline-font {
    font-family: 'Georgia', serif;
    /* color: #fff; */
    font-size: 2.2rem;
}

.map-container {
    background-color: #fdf8f4;
}

.disclaimer {
    font-size: 0.65rem;
    color: #999;
    line-height: 1.2;
}

/* The Zig-Zag Pattern Logic */
.infra-col-right {
    margin-top: 80px; /* Adjust this value to increase/decrease the stagger */
}

.infra-card h6 {
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #44362a;
    margin-bottom: 5px;
}

.infra-card p {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.infra-card img {
    width: 100%;
    aspect-ratio: 4 / 3; /* Keeps all images the same size */
    object-fit: cover;
    border-radius: 2px;
}

/* Responsiveness: Remove zig-zag on mobile for better readability */
@media (max-width: 991px) {
    .infra-col-right {
        margin-top: 0;
    }
    
    .infra-card {
        margin-bottom: 30px;
    }
    
    /* On mobile, make cards full width if they get too squished */
    
}
/* Amenities Hero */
.amenities-hero {
    background:  url('images/gallery/7.jpg'); 
    background-size: cover;
    background-position: center;
    min-height: 1000px;
}

.club-architecture {
    background:  url('images/gallery/8.jpg'); 
      background-size: cover;
    background-position: center;
     min-height: 1000px;
}

/* Contact Form Styling */
.contact-section {
    background-color: #fff2e6; /* The light peach background from your image */

}

.custom-input {
    background-color: transparent !important;
    border: 1.5px solid #44362a !important;
    border-radius: 8px !important;
    padding: 12px 15px;
    color: #44362a;
    font-size: 0.9rem;
}

.custom-input::placeholder {
    color: #887a6e;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #c19b76 !important;
}

/* The "SEND" Button */
.btn-send {
    background-color: #c19b76;
    color: white;
    padding: 10px 60px;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background-color: #a67f5a;
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .amenities-hero {
        min-height: 300px;
        padding: 2rem !important;
    }
    .headline-font {
        font-size: 1.5rem !important;
    }
    .club-architecture{
        min-height: 400px;
    }
    .sec02 {
        margin-bottom: 50px;
    }
}
.mobile-footer {
    border-top: 1px solid #eee;
    z-index: 1030; /* Higher than other content, lower than modal */
}

.mobile-footer .btn {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    background: #8e2c33;
    color: #fff;
}
:root {
    --bg-dark: #23120b;         /* Premium deep chocolate brown from image_7f66eb.png */
    --gold: #d4af37;            /* Elegant gold headline color */
    --gold-light: #f3e5ab;      /* Soft light gold text */
    --text-muted: #dcd1ca;      /* Readable text white-brown */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}
.hero-display {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    /* background-color: #eae6e1;  */
    position: relative;
    /* In dynamic setup, insert the upper bright interior photo from image_7f66eb.png as a background image here */
    background-image:url(./images/bg.png), linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(35, 18, 11, 0.4));
}

.image-credit-tag {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

/* Content Area Base */
.content-dark-zone {
    background-color: #23120b;
    padding: 80px 0 100px 0;
    margin-top: -40px; /* Overlap effect onto hero background */
    position: relative;
    z-index: 2;
    border-radius: 32px 32px 0 0;
}

/* Header Section styling */
.main-header-block {
    max-width: 800px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.main-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.accent-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto 25px auto;
    opacity: 0.7;
}

.main-intro {
    font-size: 1.15rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Features Flexible Responsive Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* Individual Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Card Visual Containers (Polished upgrade from the original hexagons) */
.image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
}

.card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.feature-card:hover .card-img {
    transform: scale(1.05);
}

/* Placeholder backdrops simulating image textures for standalone code implementation */
.feature-img-1 { background-image: linear-gradient(135deg, #4d3327, #23120b); }
.feature-img-2 { background-image: linear-gradient(135deg, #5c4235, #23120b); }
.feature-img-3 { background-image: linear-gradient(135deg, #3d251a, #23120b); }

/* Typography Inside Feature Elements */
.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.card-tagline {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 18px;
    opacity: 0.9;
}

.card-description {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 300;
    text-align: justify;
}

/* Responsive Structural Breakpoints */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .main-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .content-dark-zone {
        padding: 60px 0;
        margin-top: -20px;
    }
    .main-title {
        font-size: 1.5rem;
    }
    .main-header-block {
        margin-bottom: 50px;
    }
}