:root {
    /* Primary Color Palette - 5 colors plus shades */
    --primary-brown: #8B4513;
    --primary-green: #228B22;
    --primary-cream: #F5F5DC;
    --primary-orange: #FF8C00;
    --primary-gray: #696969;
    
    /* Light shades */
    --light-brown: #D2B48C;
    --light-green: #90EE90;
    --light-cream: #FFFEF7;
    --light-orange: #FFD700;
    --light-gray: #D3D3D3;
    
    /* Dark shades */
    --dark-brown: #654321;
    --dark-green: #006400;
    --dark-cream: #E6E6DC;
    --dark-orange: #FF6347;
    --dark-gray: #2F2F2F;
    
    /* Conservative font sizes */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-h1: 28px;
    --font-size-h2: 24px;
    --font-size-h3: 20px;
    --font-size-h4: 18px;
    --font-size-h5: 16px;
    --font-size-h6: 14px;
    --navbar-brand-size: 20px;
}

/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-cream);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Conservative typography */
h1 { font-size: var(--font-size-h1); font-weight: 600; color: var(--primary-brown); }
h2 { font-size: var(--font-size-h2); font-weight: 600; color: var(--primary-brown); }
h3 { font-size: var(--font-size-h3); font-weight: 500; color: var(--primary-green); }
h4 { font-size: var(--font-size-h4); font-weight: 500; }
h5 { font-size: var(--font-size-h5); font-weight: 500; }
h6 { font-size: var(--font-size-h6); font-weight: 500; }

p { font-size: var(--font-size-base); margin-bottom: 1rem; }

/* Header */
.navbar-brand {
    font-size: var(--navbar-brand-size) !important;
    font-weight: 600;
    color: var(--primary-brown) !important;
}

.navbar {
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
  font-size: 10px;
    color: var(--primary-brown) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-green) 50%, var(--primary-orange) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../STO_images/hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-title {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: var(--font-size-h3);
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-desc {
    font-size: var(--font-size-large);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Decorative shapes */
.hero-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 15%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Section styling */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background-color: var(--light-cream);
}

.section:nth-child(odd) {
    background-color: var(--primary-cream);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-style: italic;
}

.section-desc {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid var(--light-green);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-name {
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-price {
    font-size: var(--font-size-h3);
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--primary-gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Team */
.team-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-green);
}

.team-name {
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-green);
    font-style: italic;
}

/* Reviews/Testimonials */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 1rem;
    border-left: 4px solid var(--primary-orange);
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.review-author {
    font-weight: 600;
    color: var(--primary-brown);
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-brown) 100%);
    color: white;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-form .form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(34, 139, 34, 0.25);
}

.contact-form label {
    color: var(--primary-brown);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-brown) 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--dark-green) 100%);
    color: var(--light-cream);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-orange);
}

.footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--light-gray);
}

/* FAQ */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: var(--primary-green);
    color: white;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--dark-green);
}

.faq-answer {
    padding: 1rem;
    color: var(--dark-gray);
    border-radius: 0 0 10px 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb-container {
    padding: 1rem 0;
    background: var(--light-cream);
}

.breadcrumb-image {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    height: 3px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-green) 100%);
    border: none;
    margin: 2rem auto;
    max-width: 100px;
} 