/* MAIN STYLES FOR PHOTOGRAPHY ROAD TRIPS THROUGH SAXON SWITZERLAND */

/* COLOR PALETTE */
:root {
  --primary-color: #2c3e50;    /* Deep blue slate */
  --secondary-color: #e67e22;  /* Warm orange */
  --accent-color: #27ae60;     /* Forest green */
  --neutral-color: #ecf0f1;    /* Light gray */
  --dark-color: #1a252f;       /* Very dark blue */
  
  /* Shades */
  --primary-light: #3d5a80;
  --primary-dark: #1c2b3a;
  --secondary-light: #f39c12;
  --secondary-dark: #d35400;
  --accent-light: #2ecc71;
  --accent-dark: #219653;
  --neutral-light: #f5f7f8;
  --neutral-dark: #bdc3c7;
}

/* TYPOGRAPHY */
body {
overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-color);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--neutral-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 5rem 0;
}

/* HEADER */
header {
  background-color: var(--primary-color);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(44, 62, 80, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-light);
  text-decoration: none;
}

.navbar-nav {
  flex-direction: row;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: var(--neutral-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.hamburger-menu {
  display: none;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.hero-title-1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: white;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-desc-1 {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ABOUT SECTION */
.about {
  background-color: var(--neutral-light);
}

.about-feature {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* SERVICES SECTION */
.services {
  background-color: white;
}

.service-card {
  background-color: var(--neutral-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

/* FEATURES SECTION */
.features {
  background-color: var(--primary-light);
  color: white;
}

.features h2, 
.features h3 {
  color: white;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.feature-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-right: 1rem;
  flex-shrink: 0;
}

/* PRICE PLAN SECTION */
.price-plan {
  background-color: var(--neutral-light);
}

.price-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
  padding: 3rem 2rem;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--secondary-color);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.price-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.price-features li i {
  color: var(--accent-color);
  margin-right: 0.8rem;
}

/* TEAM SECTION */
.team {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-img {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

/* REVIEWS SECTION */
.reviews {
  background-color: var(--primary-color);
  color: white;
}

.reviews h2,
.reviews h3 {
  color: white;
}

.review-slider .swiper-slide {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  height: auto;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--secondary-color);
}

/* CORE INFO SECTION */
.core-info {
  background-color: var(--neutral-light);
}

.info-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* CONTACT FORM SECTION */
.contact {
  background-color: white;
}

.contact-form {
  background-color: var(--neutral-light);
  padding: 3rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--neutral-dark);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check-input {
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--secondary-dark);
}

/* BLOG SECTION */
.blog {
  background-color: var(--neutral-light);
}

.blog-post {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-post:hover {
  transform: translateY(-5px);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--secondary-dark);
}

/* FAQ SECTION */
.faq {
  background-color: white;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: var(--neutral-light);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--neutral-dark);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.accordion-content {
  padding: 1.5rem;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-item.active .accordion-header {
  background-color: var(--primary-color);
  color: white;
}

.accordion-item.active .accordion-header h3 {
  color: white;
}

/* GALLERY SECTION */
.gallery {
  background-color: var(--neutral-light);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FOOTER */
footer {
  background-color: var(--dark-color);
  color: var(--neutral-light);
  padding: 5rem 0 2rem;
}

.footer-heading {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

#site-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ADDITIONAL PAGES */
.page-header {
  height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 1rem 0;
  background-color: var(--neutral-light);
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item i {
  margin-right: 0.5rem;
  color: var(--secondary-color);
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESIGN - Base styles, full layout in responsive.css */
@media (max-width: 991px) {
  .hero-title-1 {
    font-size: 2.8rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.3rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav {
  flex-direction: row;
    display: none;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .hero-title-1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  section {
    padding: 3rem 0;
  }
} 