:root {
    --primary-color: #1a5276; /* Deep Blue */
    --secondary-color: #d68910; /* Accent Orange/Gold */
    --light-bg: #fdfefe;
    --text-color: #2c3e50;
    --white: #ffffff;
    --dark: #151a21;
    --gray: #b0b3b8;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.7)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(214, 137, 16, 0.4);
    transition: var(--transition);
}

.btn:hover {
    background-color: #b9770e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(214, 137, 16, 0.6);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.text-block h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.img-block img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.img-block img:hover {
    transform: scale(1.02);
}

/* Services / Amenities */
.services {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--secondary-color);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--gray);
    padding: 80px 20px 40px;
    text-align: center;
}

footer h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

footer p {
    margin: 10px 0;
    font-size: 1rem;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

footer a:hover {
    color: white;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }
}

.legal-links {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.9rem;
}

.legal-links a {
    margin: 0 15px;
    color: #777;
}

.legal-links a:hover {
    color: white;
}

/* Utility Classes */
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }
.text-highlight { color: var(--secondary-color); font-weight: bold; }

ul.feature-list {
    list-style: none;
    padding: 0;
}

ul.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

ul.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}
