/* Custom Reset & Base Variables */
:root {
    --primary: #2d6a4f;
    --primary-hover: #1b4332;
    --secondary: #d8f3dc;
    --accent: #e9c46a;
    --dark: #1d2d44;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border-radius: 8px;
    --font-family: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--dark);
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.brand-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.2s, transform 0.1s;
    text-align: center;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff !important;
}

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

.btn-secondary {
    background-color: #ffffff;
    color: var(--dark) !important;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.btn-light {
    background-color: #ffffff;
    color: var(--primary) !important;
}

.btn-light:hover {
    background-color: var(--secondary);
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff !important;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero {
    position: relative;
    color: #ffffff;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(29, 45, 68, 0.92) 0%, rgba(29, 45, 68, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.badge {
    background-color: rgba(216, 243, 220, 0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 28px;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Quick Info Banner */
.info-banner {
    background-color: var(--primary);
    color: #ffffff;
    padding: 30px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.banner-item .icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-item h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.banner-item p {
    font-size: 0.95rem;
    color: #d8f3dc;
}

.banner-item a {
    color: #ffffff;
    text-decoration: underline;
}

/* General Layout Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    color: #4a5568;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.image-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.image-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.caption {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--gray);
    text-align: center;
}

/* Hours & Location Section */
.hours-section {
    background-color: var(--light);
    padding: 80px 0;
}

.hours-card, .location-card {
    background: #ffffff;
    padding: 36px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hours-card h2 {
    color: var(--primary);
    margin-bottom: 12px;
}

.schedule-box {
    margin: 24px 0;
    border-top: 2px solid var(--light);
    border-bottom: 2px solid var(--light);
    padding: 16px 0;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-weight: 600;
}

.schedule-row .time {
    color: var(--primary);
}

.note-box {
    background-color: #fff8e6;
    border-left: 4px solid var(--accent);
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.location-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.door-img {
    width: 130px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.location-details h3 {
    margin-bottom: 8px;
    color: var(--primary);
}

.location-details p {
    color: #4a5568;
    margin-bottom: 10px;
}

/* Call to Action */
.cta-section {
    background-color: var(--dark);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: #a0aec0;
    margin-bottom: 24px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Footer */
footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 6px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .location-card {
        flex-direction: column;
        text-align: center;
    }

    .door-img {
        width: 100%;
        height: 220px;
    }

    .cta-actions {
        flex-direction: column;
    }
}