/* Color Palette - 5 Primary Colors */
:root {
    --primary-sage: #adc488;
    --primary-terracotta: #ce8c66;
    --primary-forest: #4e5642;
    --primary-cream: #fef0e0;
    --primary-burgundy: #9b516b;
    
    /* Light/Dark Shades */
    --sage-light: #adb3a4;
    --sage-dark: #6c9266;
    --terracotta-light: #e5c7a6;
    --terracotta-dark: #c28e4c;
    --forest-light: #8e9b76;
    --forest-dark: #4d6033;
    --cream-light: #FBFAF7;
    --cream-dark: #dedacb;
    --burgundy-light: #934a62;
    --burgundy-dark: #804355;
    
    /* Conservative Typography */
    --font-size-root: 16px;
    --font-size-small: 0.875rem;
    --font-size-normal: 1rem;
    --font-size-large: 1.125rem;
    --font-size-h1: 2rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.5rem;
    --font-size-h4: 1.25rem;
    --font-size-brand: 1.125rem;
}

/* Base Styles */
html {
    font-size: var(--font-size-root);
    scroll-behavior: smooth;
}

/* Respect reduced motion preference */
@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 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--forest-dark);
    background: var(--cream-light);
}

/* Typography - Conservative Sizes */
h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 1.05rem;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--forest-dark);
    margin-bottom: 0.94rem;
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: 500;
    color: var(--primary-sage);
    margin-bottom: 0.60rem;
}

p {
    font-size: var(--font-size-normal);
    color: var(--forest-light);
    margin-bottom: 1.05rem;
}

/* Header - Conservative Logo Size */
.navbar {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--sage-light) 100%);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: var(--font-size-brand) !important;
    font-weight: 600;
    color: var(--forest-dark) !important;
}

.nav-link {
    font-size: var(--font-size-normal);
    font-weight: 500;
    color: var(--forest-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-sage) !important;
}

/* Hero Section - Fullscreen Height */
.hero-section {
  padding-top: 50px;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--terracotta-light) 50%, var(--cream-light) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../POW_images/hero-retreat.webp') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Service Cards - 6 Unique Packages */
.service-card {
    background: white;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 11px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.15);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.service-card .price {
    font-size: 1.62rem;
    font-weight: 700;
    color: var(--primary-burgundy);
    text-align: center;
    margin-top: 1.07rem;
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(145deg, var(--cream-light), var(--sage-light));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 9px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-card i {
    color: var(--primary-sage);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid var(--sage-light);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 0.2rem rgba(177, 191, 155, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-forest));
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--sage-dark), var(--forest-dark));
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(0,0,0,0.2);
}

/* Contact Info */
.contact-info {
    background: linear-gradient(145deg, var(--cream-light), var(--sage-light));
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2.06rem;
}

.contact-info p {
    margin-bottom: 1.05rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 0.75rem;
    color: var(--primary-sage);
    width: 20px;
}

/* Team Photos with IDs team_1-5 */
.team-member {
    padding: 1rem;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-sage);
    margin-bottom: 1.05rem;
}

/* Testimonials Slider */
.testimonials-swiper {
    padding: 2rem 0;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Gallery Images */
.gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* FAQ Section - 10 Questions */
.accordion-button {
    background: var(--cream-light);
    border: none;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: var(--sage-light);
    color: var(--forest-dark);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--burgundy-dark) 100%);
}

footer h5, footer h6 {
    color: var(--cream-light);
}

footer p, footer li {
    color: var(--cream-dark);
}

footer a {
    color: var(--sage-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--cream-light);
}

/* Utility Classes */
.bg-light {
    background: var(--cream-light) !important;
}

.text-muted {
    color: var(--forest-light) !important;
}

/* Blog Section */
.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.post-content {
    padding: 1.5rem;
}

/* Breadcrumb - Images Only */
.breadcrumb {
    background: transparent;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}



/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
