/* Ramsey's Playhouse CSS - Squarespace Compatible */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
}

/* Color Variables */
:root {
    --primary-color: #E91E63; /* Pink */
    --accent-color: #06B6D4; /* Teal */
    --background-color: #ffffff;
    --muted-color: #f8fafc;
    --border-color: #e2e8f0;
    --text-color: #334155;
    --muted-text: #64748b;
    --white: #ffffff;
    --black: #0f172a;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-description {
    font-size: 1.25rem;
    text-align: center;
    color: var(--muted-text);
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 4rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #0891b2;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

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

/* Header */
.header {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 120px 0 80px 0;
    margin-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1152px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-tagline {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.trust-text {
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.hero-stats {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background-color: var(--white);
    color: var(--text-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-text {
    font-size: 0.875rem;
    color: var(--muted-text);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.daycare-icon {
    background-color: rgba(233, 30, 99, 0.1);
}

.boarding-icon {
    background-color: rgba(6, 182, 212, 0.1);
}

.service-icon {
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-description {
    text-align: center;
    color: var(--muted-text);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-pricing {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.period {
    color: var(--muted-text);
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--muted-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-radius: 16px 16px 0 0;
}

.daycare-header {
    background-color: rgba(233, 30, 99, 0.05);
}

.boarding-header {
    background-color: rgba(6, 182, 212, 0.05);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.daycare-bg {
    background-color: rgba(233, 30, 99, 0.1);
}

.boarding-bg {
    background-color: rgba(6, 182, 212, 0.1);
}

.icon {
    font-size: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.pricing-subtitle {
    color: var(--muted-text);
}

.pricing-content {
    padding: 1.5rem;
}

.pricing-table {
    margin-bottom: 1.5rem;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.5rem 0;
}

.table-cell {
    padding: 0;
}

.center {
    text-align: center;
}

.bold {
    font-weight: 500;
}

.price-primary {
    color: var(--primary-color);
    font-weight: 700;
}

.price-accent {
    color: var(--accent-color);
    font-weight: 700;
}

.boarding-rates {
    margin-bottom: 1.5rem;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.rate-item:last-child {
    border-bottom: none;
}

.rate-size {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.rate-description {
    color: var(--muted-text);
    font-size: 0.875rem;
}

.rate-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.pricing-notes {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-note {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
}

.pricing-note:not(.warning) {
    background-color: rgba(233, 30, 99, 0.1);
}

.pricing-note.warning {
    background-color: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
}

/* Kennel Requirements */
.requirements-section {
    max-width: 900px;
    margin: 3rem auto 0 auto;
    padding: 2rem;
    background-color: var(--muted-color);
    border-radius: 12px;
}

.requirements-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.requirement-icon {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.requirement-item p {
    color: var(--text-color);
    margin: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: rgba(248, 250, 252, 0.3);
}

.about-content-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-centered {
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.about-description {
    font-size: 1.125rem;
    color: var(--muted-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.certified-bg {
    background-color: rgba(233, 30, 99, 0.1);
}

.updates-bg {
    background-color: rgba(6, 182, 212, 0.1);
}

.secure-bg {
    background-color: rgba(233, 30, 99, 0.1);
}

.feature-title {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.feature-description {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.about-stats {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-number.primary {
    color: var(--primary-color);
}

.stat-number.accent {
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-text);
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1152px;
    margin: 0 auto;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
}

.contact-text {
    color: var(--text-color);
    margin: 0;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.business-hours {
    background-color: var(--muted-color);
    padding: 1.5rem;
    border-radius: 12px;
}

.hours-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day {
    color: var(--text-color);
    font-weight: 500;
}

.time {
    color: var(--muted-text);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.form-placeholder {
    background-color: var(--muted-color);
    padding: 2rem;
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.form-note {
    color: var(--muted-text);
    margin-bottom: 1rem;
}

.form-note:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer-text {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 0.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none; /* You may want to add a mobile menu here */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 0 60px 0;
    }
    
    .hero-stats {
        position: static;
        margin-top: 1rem;
    }
    
    .about-stats {
        position: static;
        margin-top: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}