/* 
* Dutch Cycling & Car Tours - Main CSS
* Created for a website template featuring combined bike and car tours in the Netherlands
*/

/* ===== VARIABLES ===== */
:root {
  /* Color palette */
  --primary-color: #e05c26;      /* Dutch Orange */
  --secondary-color: #1e5c99;    /* Dutch Blue */
  --accent-color: #fdb82a;       /* Bright Yellow - tulip color */
  --neutral-color: #173042;      /* Deep Navy */
  --light-color: #f7f9fc;        /* Off-White */
  
  /* Shades */
  --primary-light: #f9d0bc;
  --primary-dark: #c04b1f;
  --secondary-light: #a9c8e9;
  --secondary-dark: #0e3b6b;
  --accent-light: #ffeec4;
  --accent-dark: #e29900;
  --neutral-light: #596773;
  --neutral-dark: #0b1a24;
  
  /* Typography */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  
  /* Spacing */
  --section-spacing: 6rem;
  --element-spacing: 2rem;
}

/* ===== BASE STYLES ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--neutral-color);
  line-height: 1.6;
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  color: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.section-header h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--neutral-light);
  max-width: 700px;
  margin: 0 auto;
}

.page-section {
  padding: var(--section-spacing) 0;
}

.bg-light {
  background-color: #f8f9fa;
}

/* ===== HEADER ===== */
.header {
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem;
  color: var(--neutral-color);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-container {
  margin-top: 90px;
  background-color: var(--secondary-light);
  padding: 1rem 0;
}

.breadcrumb img {
  max-height: 50px;
  width: auto;
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: 90px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%),
    url('../TRA_images/hero.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--neutral-color);
}

.hero-image {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--section-spacing) 0;
}

.about-feature {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.about-feature h4 {
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.about-feature p {
  color: var(--neutral-light);
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: var(--section-spacing) 0;
  background-color: #f8f9fa;
}

.service-item {
  height: 100%;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-item h4 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--neutral-dark);
}

.service-item p {
  padding: 0 1.5rem;
  color: var(--neutral-light);
}

.service-item ul {
  padding: 0 1.5rem 1.5rem;
  list-style: none;
}

.service-item ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-light);
}

.service-item ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.service-item .price {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: white;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 30px;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: var(--section-spacing) 0;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--accent-dark);
  font-size: 2rem;
}

.feature-item h4 {
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.feature-item p {
  color: var(--neutral-light);
}

/* ===== PRICE PLAN SECTION ===== */
.price-plan {
  padding: var(--section-spacing) 0;
  background-color: #f8f9fa;
}

.price-plan-item {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.price-plan-item.featured {
  background-color: var(--primary-light);
  transform: scale(1.05);
  z-index: 1;
}

.price-plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-plan-item h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.price-plan-item p {
  color: var(--neutral-light);
  margin-bottom: 2rem;
}

.price-plan-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.price-plan-item ul li {
  margin-bottom: 0.7rem;
  color: var(--neutral-light);
}

.price-plan-item .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* ===== TEAM SECTION ===== */
.team {
  padding: var(--section-spacing) 0;
}

.team-member {
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-img {
  position: relative;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member:hover .member-img img {
  transform: scale(1.1);
}

.member-info {
  padding: 1.5rem;
  background-color: white;
}

.member-info h4 {
  margin-bottom: 0.5rem;
  color: var(--neutral-dark);
}

.member-info p {
  color: var(--primary-color);
  font-weight: 600;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  padding: var(--section-spacing) 0;
  background-color: #f8f9fa;
}

.reviews-slider {
  padding-bottom: 3rem;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.review-content p {
  font-style: italic;
  color: var(--neutral-light);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.review-content p:before,
.review-content p:after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
  position: absolute;
}

.review-content p:before {
  left: -10px;
  top: -10px;
}

.review-content p:after {
  right: -10px;
  bottom: -10px;
}

.review-content h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* ===== CORE INFO SECTION ===== */
.core-info {
  padding: var(--section-spacing) 0;
}

.info-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-item h4 {
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.info-item p {
  color: var(--neutral-light);
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: var(--section-spacing) 0;
  background-color: #f8f9fa;
}

.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #e1e1e1;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(224, 92, 38, 0.25);
}

textarea.form-control {
  height: auto;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  text-align: left;
}

.contact-info .info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
}

.contact-info .info-item p {
  margin: 0;
  color: var(--neutral-color);
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-map img {
  width: 100%;
  height: auto;
}

/* ===== BLOG SECTION ===== */
.blog {
  padding: var(--section-spacing) 0;
}

.blog-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
  background-color: white;
}

.blog-content h4 {
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.blog-content p {
  color: var(--neutral-light);
  margin-bottom: 1.5rem;
}

.blog-content a {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.blog-content a:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.blog-content a:hover:after {
  transform: translateX(5px);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: var(--section-spacing) 0;
  background-color: #f8f9fa;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion-header {
  background-color: white;
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
  background-color: white;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e05c26' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
}

.accordion-body p {
  color: var(--neutral-light);
  margin-bottom: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: var(--section-spacing) 0;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 5rem 0 2rem;
}

footer h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.copyright-row {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

#site-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ===== ADDITIONAL PAGES STYLES ===== */
/* Page Sections */
.page-section {
  padding: var(--section-spacing) 0;
}

/* Feature Cards */
.feature-card,
.destination-card,
.route-item,
.heritage-item,
.tulip-card,
.highlight-card,
.theme-card,
.season-card,
.equipment-item,
.fleet-item {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background-color: white;
}

.feature-card:hover,
.destination-card:hover,
.route-item:hover,
.heritage-item:hover,
.tulip-card:hover,
.highlight-card:hover,
.theme-card:hover,
.season-card:hover,
.equipment-item:hover,
.fleet-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card img,
.destination-card img,
.route-item img,
.heritage-item img,
.tulip-card img,
.highlight-card img,
.theme-card img,
.season-card img,
.equipment-item img,
.fleet-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.feature-card:hover img,
.destination-card:hover img,
.route-item:hover img,
.heritage-item:hover img,
.tulip-card:hover img,
.highlight-card:hover img,
.theme-card:hover img,
.season-card:hover img,
.equipment-item:hover img,
.fleet-item:hover img {
  transform: scale(1.1);
}

.destination-content,
.tulip-content,
.season-content {
  padding: 1.5rem;
}

.route-details,
.fleet-details {
  padding: 1.5rem;
}

.heritage-item {
  text-align: center;
  padding-bottom: 1.5rem;
}

.heritage-item h4,
.equipment-item h4 {
  padding: 1rem 1rem 0.5rem;
}

.heritage-item p,
.equipment-item p {
  padding: 0 1rem;
}

.highlight-card h4,
.theme-card h4 {
  padding: 1.5rem 1.5rem 0.5rem;
}

.highlight-card p,
.theme-card p {
  padding: 0 1.5rem 1.5rem;
}

/* Space Section */
#space {
  min-height: 500px;
  margin: 5rem 0;
} 