* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif; /* Fallback for local */
    background: white;
    color: #333;
    line-height: 2.0;
}

header {
    background: linear-gradient(135deg, #800000, #A52A2A); /* Maroon gradient */
    color: gold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: max;
    margin: 0 auto;
    padding: 0px 0 px;
    background: rgba(128, 0, 0, 0.95);
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    max-width: auto;
	height: 100px;
}

.logo:hover {
    transform: scale(1.05);
	transition: transform 0.3s ease-in-out
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
} 

nav a:hover, nav a.active {
    background: #FFD700; /* Soft yellow */
    color: #800000;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero {
  width: 100vw;
  height: 600px;
  margin: 0;
  background: url('images/hero-bg.jpg');
  background-repeat:  no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  color: red;
  background-color: rgba(0, 0, 0, 0.5); /* optional dark overlay */
  padding: 1rem;
  border-radius: 2px;
}

.hero::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.26);
    z-index: 1;
}

.hero h1, .hero p, .hero .btn {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif; /* Fancy font */
    font-size: 58px;
    margin-bottom: 10px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn {
    background: #FFD700;
    color: #800000;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s ease;
}

.btn:hover {
    background: #DAA520; /* Darker yellow */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

section {
    padding: 0;
    max-width: none;
    margin: 0 auto;
}

h2  {
    font-family: 'Playfair Display', serif; /* Fancy font */
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #800000;
    position: relative;
}

h2::after {
    content: '';
    width: 70px;
    height: 4px;
    background: #FFD700;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.intro p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
}

/* New Stats Section */
.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 16px;
    color: #800000;
}

.property-grid, .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.property-card, .service-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.property-card:hover, .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.property-card h3, .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #800000;
    margin-bottom: 15px;
}

.property-card p, .service-card p {
    font-size: 16px;
    margin: 8px 0;
    color: #555;
}

.property-card .status {
    display: inline-block;
    padding: 8px 20px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

.status.available {
    background: #228B22; /* Forest green for contrast */
    color: #fff;
}

.status.occupied {
    background: #A52A2A; /* Darker maroon */
    color: #fff;
}

.featured .btn {
    display: block;
    width: 220px;
    margin: 50px auto 0;
}

.team {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 60px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 300px;
    height: 300px;
    border-radius: 0;
    margin-bottom: 5px;
    border: 0.1px solid #FFD700;
}

.team-member h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #800000;
}

.team-member p {
    font-size: 16px;
    color: #666;
}

.contact-container {
    text-align: center;
}

.contact-info p {
    font-size: 18px;
    margin: 20px 0;
}

.contact-info a {
    color: #800000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FFD700;
}

.social-links {
    margin-top: 30px;
}

.social-icon {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: #FFD700;
    color: #800000;
}

.social-icon.tiktok {
    background: #800000;
    color: #FFD700;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

footer {
    background: linear-gradient(135deg, #800000, #A52A2A);
    color: #fff;
    text-align: center;
    padding: 30px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

footer p {
    font-size: 16px;
    margin: 8px 0;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px;
    }
    nav ul {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .property-grid, .service-grid {
        grid-template-columns: 1fr;
    }
    .stats {
        flex-direction: column;
        gap: 20px;
    }
}