/* CSS Stylesheet matching Laurelhurst Primary Colors (Navy & Gold Accent) */

:root {
    --primary-navy: #0B2240;      /* Laurelhurst deep classic navy */
    --accent-gold: #D4AF37;       /* Rich, professional gold accent */
    --light-bg: #F4F7FA;          /* Soft cool grey/white background */
    --text-dark: #2C3E50;         /* Dark text for legibility */
    --text-light: #7F8C8D;        /* Secondary paragraph text */
    --white: #FFFFFF;
    --success-green: #2ECC71;     /* Status indicator */
    --alert-orange: #E67E22;      /* Status indicator */
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-navy);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-white { color: var(--white) !important; }
.text-light { color: #CBD5E1 !important; }
.text-center { text-align: center; }

/* Navigation Bar */
.navbar {
    background-color: var(--primary-navy);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-gold);
}

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

.logo {
    color: var(--white);
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 800;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-small {
    background-color: var(--accent-gold);
    color: var(--primary-navy) !important;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700 !important;
}

.btn-small:hover {
    background-color: var(--white) !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(11, 34, 64, 0.9), rgba(11, 34, 64, 0.95)), 
                url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?auto=format&fit=crop&q=80&w=1200') no-repeat center center/cover;
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.hero-container {
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--white);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    margin: 0 auto;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    box-shadow: var(--box-shadow);
    display: block;
}

.image-accent-box {
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 8px;
    z-index: 1;
}

.about-text {
    flex: 1.2;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-gold);
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Availability Section */
.availability-section {
    background-color: var(--primary-navy);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.schedule-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid #E2E8F0;
}

.schedule-row:last-child {
    border-bottom: none;
}

.current-week {
    background-color: #F8FAFC;
    border-left: 4px solid var(--accent-gold);
}

.week-date {
    font-weight: 600;
    font-size: 1.05rem;
}

.status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-available {
    background-color: #DEF7EC;
    color: #03543F;
}

.status-unavailable {
    background-color: #FDE8E8;
    color: #9B1C1C;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 280px;
    border-top: 4px solid var(--primary-navy);
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.form-tip {
    background-color: var(--light-bg);
    padding: 15px;
    border-left: 4px solid var(--accent-gold);
    border-radius: 0 4px 4px 0;
}

.booking-form {
    flex: 1.5;
    min-width: 300px;
    background-color: var(--light-bg);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 140px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

input[type="text"], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #CBD5E1;
    border-radius: 4px;
    background-color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.2s;
}

input[type="text"]:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-navy);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #1A365D;
}

/* Footer Section */
.footer {
    background-color: #061324;
    color: #94A3B8;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* Responsive Overrides (No grid/flex layout breaks) */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Kept simple for one page code deployment */
    .hero h1 { font-size: 2rem; }
    .about-container, .contact-container { flex-direction: column; }
}

.pricing-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
}

/* Add this to style.css for a playful, friendly vibe */

.whimsical-hero {
    background: radial-gradient(circle at 20% 30%, #13335C 0%, var(--primary-navy) 100%);
    padding: 100px 0 80px 0;
    border-radius: 0 0 50px 50px; /* Curving the bottom of the hero section */
}

.fun-badge {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Turning the price display into a fun retro "sticker" look */
.pricing-sticker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-weight: 800;
    margin: 20px auto;
    box-shadow: 3px 3px 0px var(--white);
    transform: rotate(-8deg); /* Fun tilt */
}

.pricing-sticker .price {
    font-size: 2rem;
    line-height: 1;
}

.pricing-sticker .per-hour {
    font-size: 0.7rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-left: 3px;
    text-align: left;
}

/* Soften all the cards and image boxes */
.about-img, .schedule-card, .testimonial-card, .booking-form {
    border-radius: 24px !important; /* Makes everything friendly and rounded */
}

/* Give buttons a subtle pop animation when hovered */
.btn-bounce {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-navy);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 6px 0px var(--accent-gold);
    transition: all 0.15s ease;
}

.btn-bounce:hover {
    transform: translateY(3px);
    box-shadow: 0 3px 0px var(--accent-gold);
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}