/* Photography Workshop Template - Main CSS */

/* Color Variables */
:root {
  --primary-color: #d53067;
  --primary-light: #ffcfce;
  --primary-dark: #822024;
  --secondary-color: #5b3db6;
  --secondary-light: #ece4fb;
  --secondary-dark: #4b2d69;
  --accent-color: #1d8aac;
  --accent-light: #9db8e7;
  --accent-dark: #055166;
  --success-color: #0ddd96;
  --success-light: #cefeff;
  --success-dark: #124733;
  --warning-color: #ffde00;
  --warning-light: #fff0cd;
  --warning-dark: #774f06;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --dark-gray: #252629;
  --black: #000000;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  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 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 19px;
  padding: 2rem;
  box-shadow: 0 17px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 19px;
  padding: 3rem;
  box-shadow: 0 23px 40px rgba(0,0,0,0.1);
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

/* Header & Navigation */
.navbar-brand {
  font-size: 1.39rem !important;
  font-weight: 600;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.hero-section .lead {
  font-size: 1.32rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.1);
}

/* Section Styling */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.59rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.section-subtitle {
  font-size: 1.30rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.section-description {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.73rem;
}

.service-card h4 {
  font-size: 1.61rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--dark-gray);
  margin-bottom: 1.65rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--dark-gray);
}

.service-features li::before {
  content: "✓";
  color: var(--success-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Team Section */
.team-member {
  text-align: center;
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.63rem;
  border: 4px solid var(--primary-light);
}

.team-member h5 {
  font-size: 1.29rem;
  font-weight: 600;
  margin-bottom: 0.68rem;
  color: var(--dark-gray);
}

.team-member .role {
  color: var(--secondary-color);
  font-weight: 500;
}

/* Reviews/Testimonials */
.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 13px 30px rgba(0,0,0,0.1);
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.62rem;
  color: var(--dark-gray);
  line-height: 1.8;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* FAQ Section */
.faq-card {
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid var(--light-gray);
}

.faq-question {
  background: var(--light-gray);
  padding: 1.5rem;
  margin: 0;
  font-weight: 600;
  color: var(--dark-gray);
  border-radius: 13px 14px 0 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--dark-gray);
  line-height: 1.7;
  border-radius: 0 0 11px 10px;
}

/* Price Plan Cards */
.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.price-card h4 {
  font-size: 1.60rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.price-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.61rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--dark-gray);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--light-gray);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(202, 35, 108, 0.25);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Blog Cards */
.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card h5 {
  font-size: 1.39rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.blog-card p {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.blog-card .btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Footer */
.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #4c4e52;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Features Grid */
.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.feature-item .feature-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-item h5 {
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Case Study Cards */
.case-study-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.case-study-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.timeline-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.62rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-step h5 {
  color: var(--dark-gray);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Career/Jobs */
.career-item {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.63rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid var(--light-gray);
}

.career-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.72rem;
}

.career-item .role {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Core Info Items */
.core-info-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--accent-color);
}

.core-info-item h6 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.59rem;
}

/* Breadcrumb */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--light-gray);
}

.breadcrumb-nav img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Additional Page Sections */
.additional-section {
  padding: 60px 0;
}

.additional-section:nth-child(even) {
  background: var(--light-gray);
}

.additional-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.additional-section h3 {
  font-size: 1.56rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.additional-element {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.additional-element h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.58rem;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark-gray);
}



/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
