/* CSS Variables - Vintage Patchwork Quilts Color Palette */
:root {
    /* Primary Colors */
    --primary-burgundy: #8B3A3A;
    --primary-sage: #9CAF88;
    --primary-cream: #F4F1E8;
    --primary-mustard: #D4A574;
    --primary-navy: #2C3E50;
    
    /* Light Shades */
    --light-burgundy: #B85A5A;
    --light-sage: #C4D4B0;
    --light-cream: #F9F7F2;
    --light-mustard: #E2C199;
    --light-navy: #4A5F7A;
    
    /* Dark Shades */
    --dark-burgundy: #6B2A2A;
    --dark-sage: #7A8F68;
    --dark-cream: #E8E2D5;
    --dark-mustard: #C19554;
    --dark-navy: #1C2A35;
    
    /* Conservative Font Sizes */
    --font-size-root: 16px;
    --font-size-h1: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-h5: 1.125rem;
    --font-size-brand: 1.25rem;
    --font-size-nav: 1rem;
    --font-size-body: 1rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-root);
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
  overflow-x: hidden !important;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: var(--font-size-body);
    line-height: 1.6;
    color: var(--primary-navy);
    background-color: var(--primary-cream);
}

/* Typography */
h1 {
    font-size: var(--font-size-h1);
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 1rem;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--primary-burgundy);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 500;
    color: var(--primary-sage);
    margin-bottom: 0.5rem;
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

h5 {
    font-size: var(--font-size-h5);
    font-weight: 500;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

p {
    font-size: var(--font-size-body);
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

/* Header/Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-cream), var(--light-cream));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-size: var(--font-size-brand) !important;
    font-weight: 600;
    color: var(--primary-burgundy) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-size: var(--font-size-nav);
    color: var(--primary-navy) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-burgundy) !important;
}

.navbar-toggler {
    border: 2px solid var(--primary-sage);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 62, 80, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-sage), var(--primary-sage));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quilt" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%23F4F1E8" opacity="0.1"/><polygon points="0,0 10,10 0,20" fill="%238B3A3A" opacity="0.1"/><polygon points="20,0 10,10 20,20" fill="%23D4A574" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23quilt)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Sections */
section {
    padding: 4rem 0;
}

section.bg-light {
    background-color: var(--light-cream);
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-body {
  overflow-x: hidden !important;
    padding: 1.5rem;
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-burgundy), var(--primary-burgundy));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139,58,58,0.3);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-mustard), var(--dark-mustard));
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-sage);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    background: var(--primary-mustard);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    right: -33px;
}

.timeline-item:nth-child(even)::before {
    left: -33px;
}

/* Info Cards */
.info-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    color: var(--primary-sage);
    margin-bottom: 1rem;
}

/* Contact Form */
.form-control {
    border: 2px solid var(--light-sage);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.2rem rgba(156,175,136,0.25);
}

.contact-info {
    background: linear-gradient(135deg, var(--light-cream), white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--primary-burgundy);
    margin-right: 0.75rem;
    width: 20px;
}

/* Swiper Customization */
.reviewsSwiper {
    padding: 2rem 0;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet {
    background: var(--primary-sage);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-burgundy);
    opacity: 1;
}

/* Accordion */
.accordion-item {
    border: 1px solid var(--light-sage);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: var(--light-cream);
    color: var(--primary-navy);
    border: none;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-sage);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(156,175,136,0.25);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
}

footer h5 {
    color: var(--primary-mustard);
    margin-bottom: 1rem;
}

footer p, footer li {
    color: var(--light-cream);
}

footer a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-mustard);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--light-cream);
    border-bottom: 1px solid var(--light-sage);
}

.breadcrumb-image {
    height: 30px;
    width: auto;
}

/* Space Page */
#space {
    background: linear-gradient(135deg, var(--primary-cream), var(--light-sage));
}

/* Team Photos */
.rounded-circle {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Gallery Images */
.img-fluid.rounded {
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.img-fluid.rounded:hover {
    transform: scale(1.05);
}

/* Price Plan Special Styling */
.border-primary {
    border: 3px solid var(--primary-burgundy) !important;
}

/* Badge Styling */
.badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
}

.bg-primary {
    background-color: var(--primary-burgundy) !important;
}

.bg-secondary {
    background-color: var(--primary-sage) !important;
}

/* Text Colors */
.text-primary {
    color: var(--primary-burgundy) !important;
}

.text-light {
    color: var(--light-cream) !important;
}

/* Utility Classes */
.min-vh-100 {
    min-height: 100vh;
}

/* Small Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card, .info-card, .timeline-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Disable animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .card, .info-card, .timeline-item {
        animation: none;
    }
} 