@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary: #2C3E50;
    --accent: #D4AF37; /* Warm Gold accent */
    --bg-white: #FFFFFF;
    --bg-light: #F9FBFC;
    --text-main: #1A1A1A;
    --text-muted: #576574;
    --border: #E8ECEF;
    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    display: block;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
}

header.scrolled .logo {
    color: var(--primary);
}

.logo i {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

header.scrolled .nav-links a {
    color: var(--primary);
}

.nav-links a:hover {
    color: var(--accent) !important;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #FFFFFF;
    background: #000;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../main-hero.jpg') center/cover no-repeat;
    z-index: 0;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 7.5rem;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    line-height: 1;
    font-weight: 800;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 4rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-radius: 4px;
}

/* Sections */
.py-10 { padding: 10rem 0; }
.bg-light { background-color: var(--bg-light); }

/* Branch Specific Vibe */
#branches {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../mallam-branch.jpg') center/cover fixed;
}

#rooms {
    background: var(--bg-white);
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.card {
    background: var(--bg-white);
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.card-img-wrapper {
    height: 300px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.card-body {
    padding: 2.5rem;
}

.card-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.card-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

/* Features */
.features-section {
    background: var(--primary);
    color: #FFFFFF;
}

.features-section h3 { color: #FFFFFF; }

.feature-card {
    padding: 4rem 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-primary {
    background: var(--accent);
    color: #000;
    border: 1px solid var(--accent);
}

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

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

header.scrolled .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 5rem;
    background: var(--primary);
    color: #FFFFFF;
}

.contact-info h2 { color: #FFFFFF; font-size: 3rem; margin-bottom: 2rem; }

.contact-form-container {
    padding: 5rem;
    background: #FFFFFF;
}

.contact-form input, .contact-form select, .contact-form textarea {
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 1.2rem;
    font-size: 1rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.contact-form input:focus {
    border-color: var(--accent);
    background: #FFFFFF;
}

/* Footer */
footer {
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: 8rem 0 4rem;
}

footer h4 { color: #FFFFFF; margin-bottom: 2rem; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
footer a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 1400px) {
    .hero h1 { font-size: 6rem; }
}

@media (max-width: 1200px) {
    .container { max-width: 95%; }
    .hero h1 { font-size: 5rem; }
    .hero p { font-size: 1.5rem; }
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 4rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info, .contact-form-container { padding: 4rem 2rem; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    header { padding: 1rem 0; }
    .nav-links { display: none; } /* Could add a mobile menu later if needed */
    .hero h1 { font-size: 3rem; margin-bottom: 1.5rem; }
    .hero p { font-size: 1.2rem; margin-bottom: 2.5rem; }
    .hero { padding-top: 60px; }
    .py-10 { padding: 5rem 0; }
    .grid { grid-template-columns: 1fr; gap: 2rem; }
    .card-img-wrapper { height: 250px; }
    .section-header { margin-bottom: 3rem; }
    .contact-info h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .btn { padding: 1rem 1.5rem; width: 100%; text-align: center; margin-bottom: 1rem; }
    .logo { font-size: 1.2rem; }
}