/* PhotoWalk Tours - Main Styles */

/* CSS Variables - Color Palette */
:root {
    --primary-color: #5f6cff;
    --primary-light: #9da5ff;
    --primary-dark: #4041c3;
    
    --secondary-color: #ff5c9d;
    --secondary-light: #fdacc4;
    --secondary-dark: #c73a69;
    
    --accent-color: #44cab9;
    --accent-light: #7ddee2;
    --accent-dark: #47b69e;
    
    --neutral-color: #F8F9FA;
    --neutral-light: #FFFFFF;
    --neutral-dark: #e1e4ea;
    
    --dark-color: #343d4a;
    --dark-light: #4d586b;
    --dark-darker: #28313c;
}

/* Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Conservative font sizes */
.navbar-brand {
    font-size: 1.27rem;
    font-weight: 600;
    color: var(--primary-color);
}

h1, .display-4 {
    font-size: 2.60rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3, h4 {
    font-size: 1.60rem;
    font-weight: 500;
}

h5 {
    font-size: 1.33rem;
    font-weight: 500;
}

p, .lead {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Header Styles */
.navbar {
    backdrop-filter: blur(10px);
    transition: all 0.45s ease;
}

.navbar-brand {
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.98s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    position: relative;
    background: linear-gradient(135deg, var(--neutral-light) 0%, var(--neutral-color) 100%);
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(45deg, var(--primary-light), var(--accent-color));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

#hero .container {
    position: relative;
    z-index: 1;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 2rem;
    transition: all 0.45s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 11px 12px rgba(88, 95, 237, 0.30);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    transition: all 0.85s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Services Cards */
#services .card {
    border-left: 4px solid var(--primary-color);
}

#services .card:nth-child(even) {
    border-left-color: var(--accent-color);
}

/* Team Cards */
#team .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Gallery Styles */
#gallery img {
    transition: all 1.23s ease;
    cursor: pointer;
}

#gallery img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Contact Form */
.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid var(--neutral-dark);
    transition: all 0.68s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(86, 84, 255, 0.25);
}

/* Footer */
#footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-darker) 100%);
}

#footer a:hover {
    color: var(--primary-light) !important;
}

/* Icon Styles */
.fas, .far {
    color: var(--primary-color);
}

/* Section Spacing */
section {
    scroll-margin-top: 80px;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-decoration {
        display: none;
    }
}

/* Focus Styles */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Breadcrumb Styles */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item img {
    opacity: 0.7;
    transition: opacity 1.22s ease;
}

.breadcrumb-item img:hover {
    opacity: 1;
}

/* Price Plan Highlight */
.border-primary {
    border: 2px solid var(--primary-color) !important;
}

/* Reviews Section */
#reviews .fas.fa-star {
    color: #ffbc0d;
}

/* Custom spacing utilities */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.my-6 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* Text colors */
.text-primary {
    color: var(--primary-color) !important;
}

/* Background utilities */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 19px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
