/* ===========================================
   Personal Brand Photography Retreats - Main CSS
   Bootstrap 5 Compatible - No Overrides
   =========================================== */

/* CSS Variables for Color Palette */
:root {
    /* Primary Pastel Colors - High Contrast */
    --primary-color: #2c3e50;
    --secondary-color: #ecf0f1;
    --accent-color: #3498db;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    
    /* Light/Dark Shades */
    --primary-light: #34495e;
    --primary-dark: #1a252f;
    --secondary-light: #ffffff;
    --secondary-dark: #bdc3c7;
    --accent-light: #5dade2;
    --accent-dark: #2980b9;
    
    /* Conservative Typography */
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --line-height-base: 1.5;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --element-spacing: 2rem;
}

/* Base Typography - Conservative Sizes */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--primary-color);
    overflow-x: hidden;
}

/* Conservative Heading Sizes */
h1, .h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
}

h2, .h2 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
}

h5, .h5 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Conservative Navbar Brand Size */
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Hero Section Styles */
#hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Shapes for Hero */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
}

.shape-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: var(--success-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
}

/* Process Number Styles */
.process-number {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--secondary-dark);
}

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

/* Button Styles */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* Icon Styling */
.fas, .far {
    color: var(--accent-color);
}

/* Contact Info Styling */
.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: var(--element-spacing);
}

.contact-info .fas {
    color: var(--accent-color);
    width: 20px;
}

/* Footer Styles - High Contrast Only */
footer {
    background-color: var(--primary-dark);
    color: var(--secondary-light);
}

footer h5 {
    color: var(--secondary-light);
    font-weight: 600;
}

footer a {
    color: var(--secondary-light);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-light);
}

/* Breadcrumb Styling */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Section Spacing */
section {
    padding: var(--section-padding);
}

/* Text Color Utilities */
.text-primary {
    color: var(--primary-color);
}

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

/* Background Utilities */
.bg-light {
    background-color: var(--secondary-color);
}

/* Accessibility - Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
    
    .card:hover {
        transform: none;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    border-color: var(--accent-color);
}

/* Gallery Image Styling */
#gallery img {
    transition: transform 0.3s ease;
    cursor: pointer;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Team Member Images */
.rounded-circle {
    object-fit: cover;
}

/* Form Styling */
.form-label {
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    border: 1px solid var(--secondary-dark);
    border-radius: 0.375rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Badge Styling */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
}

/* Custom Spacing */
.mb-6 {
    margin-bottom: 4rem;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
