﻿/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: #6B7A3A;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header Styles */
  header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  
  .logo {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
  }

  .logo span {
    color: #6B7A3A;
    font-style: italic;
    font-size: 13px;
    font-weight: 400;
    display: block;
    letter-spacing: 0.5px;
  }

  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 25px;
  }
  
  nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #6B7A3A;
  }
  
  .book-btn {
    background-color: #1877F2;
    color: white;
    padding: 9px 20px;
    margin: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background-color 0.25s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.35);
  }

  .book-btn:hover {
    background-color: #1464d8;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.45);
  }
  
  .book-btn i {
    margin-right: 0;
  }
  
  /* Hero Section */
  .hero {
    height: 70vh;
    background-image: url('../assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: flex-end;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.3));
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
  }
  
  .hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    padding: 20px;
    border-radius: 8px;
  }
  
  .hero-cta {
    background-color: #6B7A3A;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
  }
  
  .hero-cta:hover {
    background-color: #4A5628;
    color: white;
  }
  
  .hero-cta i {
    margin-right: 10px;
  }
  
  /* ── About link button (olive, not Facebook blue) ── */
  .about-link-btn {
    display: inline-block;
    background-color: #6B7A3A;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 8px;
  }

  .about-link-btn:hover {
    background-color: #4A5628;
    transform: translateY(-2px);
    color: white;
  }

  /* Main Content */
  main {
    padding: 60px 0;
  }
  
  .page-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .page-title h1,
  .page-title h2 {
    font-size: 36px;
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
  }

  .page-title .subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
    color: #6B7A3A;
    display: block;
    margin-top: 5px;
  }
  
  .page-title h1::after,
  .page-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #6B7A3A;
    bottom: -10px;
    left: 20%;
  }
  
  /* Tours Grid */
  .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .tour-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .tour-card:hover {
    transform: translateY(-5px);
  }
  
  .tour-img {
    height: 220px;
    background-size: cover;
    background-position: center;
  }
  
  .tour-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .tour-content h3 {
    margin-bottom: 10px;
    font-size: 26px;
    color: #4A5628;
    font-family: 'Great Vibes', cursive;
  }
  
  .tour-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .tour-btn {
    display: block;
    text-align: center;
    background-color: #6B7A3A;
    color: white;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
  }
  
  .tour-btn:hover {
    background-color: #4A5628;
  }
  
  /* About Section */
  .about-section {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    background: linear-gradient(135deg, #FAFAF5 0%, #F7F9EE 100%);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid #E4EAD0;
  }
  
  .about-img {
    flex: 1;
    height: 400px;
    background-image: url('../assets/images/cissi.jpg');
    background-size: cover;
    background-position: top center;
    border-radius: 8px;
  }
  
  .about-content {
    flex: 1;
  }
  
  .about-content h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 38px;
    margin-bottom: 20px;
    color: #6B7A3A;
  }
  
  /* Enhanced about section styling */
  .about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }

  .about-img-main {
    width: 100%;
    height: 340px;
    background-size: cover;
    background-position: center top;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    border: 3px solid #E4EAD0;
  }

  .about-img-inline {
    width: 240px;
    height: 190px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    float: right;
    margin: 4px 0 20px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.14);
    border: 3px solid #E4EAD0;
  }

  .about-content p {
    margin-bottom: 22px;
    color: #444;
    font-size: 17px;
    line-height: 1.9;
    text-align: left;
  }

  .personal-touch {
    background-color: #fff;
    border: 2px solid #6B7A3A;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
  }

  .personal-touch p {
    background: none;
    border: none;
    padding: 10px 0;
    box-shadow: none;
    text-align: center;
  }

  .signature {
    font-size: 20px;
    margin-top: 20px;
    color: #6B7A3A;
  }

  .name-signature {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    display: block;
    margin-top: 8px;
  }

  /* Breadcrumb Navigation */
  .breadcrumb {
    background-color: #f8f9fa;
    padding: 10px 0;
    margin-bottom: 20px;
  }

  .breadcrumb ol {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }

  .breadcrumb li {
    display: flex;
    align-items: center;
  }

  .breadcrumb li + li::before {
    content: "›";
    margin: 0 8px;
    color: #666;
  }

  .breadcrumb a {
    color: #6B7A3A;
    text-decoration: none;
  }

  .breadcrumb a:hover {
    text-decoration: underline;
  }

  .breadcrumb .current {
    color: #666;
    font-weight: 500;
  }

  /* FAQ Section */
  .faq-section {
    margin: 60px 0;
    background: #F7F9EE;
    padding: 50px 0;
    border-radius: 16px;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .faq-item {
    background: #fff;
    border: 1px solid #E4EAD0;
    border-left: 4px solid #C9A84C;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(107, 122, 58, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(107, 122, 58, 0.15);
  }

  .faq-item h3 {
    color: #6B7A3A;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
  }

  .faq-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
  }


  /* Tour image wrapper (needed for sold-out ribbon) */
  .tour-img-wrapper {
    position: relative;
    overflow: hidden;
  }

  /* Sold-out diagonal ribbon on card image */
  .sold-out-ribbon {
    position: absolute;
    top: 18px;
    left: -34px;
    width: 140px;
    background-color: #c0392b;
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 6px 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    pointer-events: none;
  }

  /* Dim sold-out cards so available trips stand out */
  .tour-card.sold-out {
    opacity: 0.65;
    transition: opacity 0.2s, transform 0.2s;
  }
  .tour-card.sold-out:hover {
    transform: none;
    opacity: 0.75;
  }
  .tour-card.sold-out .tour-img {
    filter: grayscale(25%);
  }

  /* Special badge (e.g. "Unik resa") on card image */
  .tour-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #c0623a;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    pointer-events: none;
  }

  /* Sold-out button style */
  .tour-btn-soldout {
    display: block;
    text-align: center;
    background-color: #aaa;
    color: white;
    padding: 10px;
    border-radius: 4px;
    cursor: default;
    pointer-events: none;
  }

  /* Sold-out banner on detail pages */
  .sold-out-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #c0392b;
    color: white;
    padding: 16px 22px;
    border-radius: 8px;
    margin-bottom: 28px;
    font-size: 16px;
    font-weight: 600;
  }

  .sold-out-banner i {
    font-size: 22px;
    flex-shrink: 0;
  }

  /* Urgency text styling */
  .urgency-text {
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3);
  }

  .urgency-text-detail {
    background-color: #dc3545;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 15px 0;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
  }

  /* Tour detail subtitle styling */
  .tour-detail-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 24px;
    color: #6B7A3A;
    margin-bottom: 15px;
  }

  /* Booking info styling */
  .booking-info {
    background-color: #f8f9fa;
    border-left: 4px solid #6B7A3A;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .booking-info p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
  }

  .booking-info strong {
    color: #333;
  }
  
  /* Gallery */
  .gallery {
    margin-bottom: 60px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .gallery-item {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .gallery-item:hover {
    transform: scale(1.03);
  }
  
  /* Contact */
  .contact-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
  }
  
  .contact-booking {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
  }
  
  .contact-booking h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .contact-booking p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .contact-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .contact-item i {
    font-size: 36px;
    color: #6B7A3A;
    margin-bottom: 15px;
  }

  .contact-item h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .contact-item a {
    color: #6B7A3A;
    text-decoration: none;
  }

  .contact-item a:hover {
    text-decoration: underline;
  }

  /* Footer */
  footer {
    background-color: #333;
    color: white;
    padding: 60px 0 30px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #6B7A3A;
    bottom: 0;
    left: 0;
  }
  
  .footer-section p {
    margin-bottom: 15px;
    color: #bbb;
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #bbb;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: white;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #444;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
  }
  
  .social-links a:hover {
    background-color: #6B7A3A;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 0;
    border-top: 1px solid #444;
    color: #888;
  }

  .footer-bottom::before {
    content: '';
    display: block;
    height: 30px;
    width: 90px;
    margin: 18px auto 12px;
    background: url('../assets/ornaments/footer-ornament.svg') no-repeat center;
    background-size: contain;
    opacity: 0.65;
  }

  /* ── Ornamental Section Dividers ───────────── */
  .ornament-divider {
    text-align: center;
    margin: 8px auto;
    line-height: 0;
  }

  .ornament-divider img {
    width: 280px;
    max-width: 90%;
    display: inline-block;
    opacity: 0.8;
  }

  /* Tour Page Detail */
  .tour-detail {
    display: flex;
    gap: 30px;
  }
  
  .tour-detail-main {
    flex: 2;
  }
  
  .tour-header {
    margin-bottom: 30px;
  }
  
  .tour-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .tour-meta-detail {
    display: flex;
    gap: 20px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .tour-meta-detail div {
    display: flex;
    align-items: center;
  }
  
  .tour-meta-detail i {
    margin-right: 8px;
    color: #6B7A3A;
  }
  
  .tour-banner {
    height: 400px;
    background-image: url('/api/placeholder/1200/800');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  
  .tour-description {
    margin-bottom: 30px;
  }
  
  .tour-description h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .tour-description p {
    margin-bottom: 20px;
    color: #555;
  }
  
  .tour-itinerary {
    margin-bottom: 30px;
  }
  
  .tour-itinerary h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .itinerary-item {
    display: flex;
    margin-bottom: 30px;
  }
  
  .itinerary-day {
    flex: 0 0 70px;
    font-size: 18px;
    font-weight: bold;
    color: #6B7A3A;
  }
  
  .itinerary-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .itinerary-content p {
    color: #555;
  }
  
  .tour-booking {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .tour-booking h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .tour-booking p {
    margin-bottom: 20px;
  }
  
  .booking-btn {
    display: inline-block;
    background-color: #6B7A3A;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  
  .booking-btn:hover {
    background-color: #4A5628;
  }

  /* ── Föredrag page ─────────────────────────────── */
  .foredrag-intro {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #F3F5E8 0%, #F7F9EE 100%);
    border-left: 4px solid #6B7A3A;
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 48px;
  }

  .foredrag-intro-icon {
    font-size: 38px;
    color: #6B7A3A;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 2px;
  }

  .foredrag-intro-text p {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
  }

  .foredrag-intro-text p:last-child {
    margin-bottom: 0;
  }

  .foredrag-intro-text a {
    color: #6B7A3A;
    font-weight: 600;
    text-decoration: none;
  }

  .foredrag-intro-text a:hover {
    text-decoration: underline;
  }

  .foredrag-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .foredrag-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .foredrag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(26,118,210,0.14);
  }

  .foredrag-card-icon {
    background: linear-gradient(135deg, #6B7A3A, #C9A84C);
    color: white;
    font-size: 32px;
    padding: 26px 0;
    text-align: center;
  }

  .foredrag-card-body {
    padding: 24px 26px 28px;
    flex: 1;
  }

  .foredrag-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #6B7A3A;
    margin-bottom: 12px;
    line-height: 1.35;
  }

  .foredrag-card-body p {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin: 0;
  }

  .foredrag-cta {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 60px;
  }

  .foredrag-cta p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
  }

  .foredrag-cta .booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    font-size: 16px;
    padding: 14px 32px;
  }

  .tour-sidebar {
    flex: 1;
  }
  
  .sidebar-widget {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
  }
  
  .sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  .tour-details-list {
    list-style: none;
  }
  
  .tour-details-list li {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 15px;
  }
  
  .tour-details-list li:last-child {
    border-bottom: none;
  }
  
  .detail-label {
    flex: 0 0 120px;
    font-weight: 500;
  }
  
  .tour-cta-sidebar {
    background-color: #6B7A3A;
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
  }
  
  .tour-cta-sidebar h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }
  
  .tour-cta-sidebar p {
    margin-bottom: 20px;
  }
  
  .tour-cta-btn {
    display: block;
    background-color: white;
    color: #6B7A3A;
    padding: 12px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  
  .tour-cta-btn:hover {
    background-color: #f0f0f0;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .tours-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .about-section {
      flex-direction: column;
    }
    
    .about-img {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .container {
      padding: 0 15px;
    }

    .about-section {
      padding: 30px 20px;
    }

    .header-content {
      flex-direction: column;
      padding: 15px 0;
    }

    .logo {
      margin-bottom: 15px;
      font-size: 20px;
    }

    .header-content > .book-btn {
      display: none;
    }

    nav ul {
      margin-bottom: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    nav ul li {
      margin: 5px 10px;
    }
    
    .hero {
      height: auto;
      min-height: 60vh;
    }
    
    .hero h1 {
      font-size: 28px;
    }
    
    .hero p {
      font-size: 16px;
      padding: 15px;
    }

    .hero-subtitle {
      font-size: 26px;
    }

    .about-content h2 {
      font-size: 32px;
    }
    
    .tours-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-detail {
      flex-direction: column;
    }
    
    .tour-content {
      padding: 15px;
    }
    
    .about-section {
      flex-direction: column;
    }
    
    .about-img {
      margin-bottom: 20px;
    }

    .about-img-main {
      height: 250px;
    }

    .about-img-inline {
      float: none;
      width: 100%;
      height: 200px;
      margin: 20px 0;
    }

    .personal-touch {
      padding: 20px;
    }

    .name-signature {
      font-size: 24px;
    }

    /* Föredrag – single column on tablet */
    .foredrag-grid {
      grid-template-columns: 1fr;
    }

    .foredrag-intro {
      flex-direction: column;
      gap: 16px;
      padding: 22px 20px;
    }

  }

  @media (max-width: 480px) {
    .container {
      padding: 0 10px;
    }

    .about-section {
      padding: 24px 16px;
    }

    .tours-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    
    .hero h1 {
      font-size: 24px;
    }
    
    .hero p {
      font-size: 14px;
      padding: 12px;
    }

    .hero-subtitle {
      font-size: 22px;
    }

    .about-content h2 {
      font-size: 28px;
    }

    .tour-detail-subtitle {
      font-size: 20px;
    }
    
    .contact-section {
      padding: 20px 16px;
    }

    .contact-details {
      flex-direction: column;
    }

    .contact-item {
      min-width: 0;
      width: 100%;
    }
    
    .tour-content {
      padding: 12px;
    }
    
    .tour-content h3 {
      font-size: 22px;
    }
    
    .book-btn, .tour-btn {
      padding: 10px 15px;
      font-size: 14px;
    }
    
    nav ul li a {
      font-size: 14px;
    }

    .about-img-main {
      height: 200px;
    }

    .about-img-inline {
      height: 160px;
    }

    .personal-touch {
      padding: 15px;
    }

    .name-signature {
      font-size: 22px;
    }

  }
  
  /* Cookie Consent Styles */
  .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: none;
  }
  
  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .cookie-content h3 {
    margin-top: 0;
    color: #333;
  }
  
  .cookie-content p {
    color: #555;
    margin-bottom: 20px;
  }
  
  .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .cookie-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
  }
  
  .accept-btn {
    background-color: #6B7A3A;
    color: white;
  }
  
  .accept-btn:hover {
    background-color: #4A5628;
  }
  
  .customize-btn {
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ddd;
  }
  
  .customize-btn:hover {
    background-color: #f0f0f0;
  }
  
  .reject-btn {
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ddd;
  }
  
  .reject-btn:hover {
    background-color: #f0f0f0;
  }
  
  .cookie-settings {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    display: none;
  }
  
  .cookie-option {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .cookie-option > div {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  
  .cookie-option label {
    margin-left: 10px;
    font-weight: 500;
  }
  
  .cookie-option p {
    margin: 0;
    color: #666;
    font-size: 14px;
  }
  
  .settings-buttons {
    margin-top: 20px;
  }
  
  .save-btn {
    background-color: #6B7A3A;
    color: white;
  }
  
  .save-btn:hover {
    background-color: #4A5628;
  }
  
  .cancel-btn {
    background-color: #f9f9f9;
    color: #333;
    border: 1px solid #ddd;
  }

  /* Instagram Section */
  .instagram-section {
    margin: 48px 0 32px;
    text-align: center;
  }

  .instagram-section-inner {
    display: inline-block;
    padding: 40px 48px;
    background: linear-gradient(135deg, #fdf6ec 0%, #fef9f4 100%);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    max-width: 560px;
    width: 100%;
  }

  .instagram-section-icon {
    font-size: 2.4rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 12px;
  }

  .instagram-section h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0 0 10px;
  }

  .instagram-section p {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 20px;
  }

  .instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #fd5949, #d6249f, #285AEB);
    color: white;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s, transform 0.2s;
  }

  .instagram-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }

  .cookie-link-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-family: inherit;
  }

  .cookie-link-btn:hover {
    color: #C9A84C;
  }

  .cookie-settings-link {
    margin-top: 4px;
  }

  .tour-detail-container {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
  gap: 20px; /* Space between image and text */
  margin-top: 20px;
  padding-bottom: 30px;
}

.tour-detail-image {
  flex: 1 1 400px; /* Allows image to shrink but not grow beyond 400px initially */
  max-width: 100%; /* Responsive image */
  height: auto;
  object-fit: cover; /* Ensures the image covers the area, might crop */
  border-radius: 8px; /* Optional: adds rounded corners */
}

.tour-detail-content {
  flex: 2 1 500px; /* Allows text content to take more space */
}

.tour-detail-content h3 {
  margin-top: 0; /* Remove default top margin if image is first */
  font-size: 1.8em;
  color: #333; /* Or your theme color */
}

.tour-detail-content p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.tour-meta-detail {
  margin-top: 20px;
  margin-bottom: 25px;
  padding: 15px;
  background-color: #f9f9f9; /* Light background for meta details */
  border-left: 3px solid #007bff; /* Accent color - adjust as needed */
}

.tour-meta-detail p {
  margin-bottom: 8px;
}

.tour-detail-book-btn {
  display: inline-block;
  margin-right: 15px; /* Space between buttons */
  margin-bottom: 15px; /* Space below buttons on small screens */
}

.back-to-tours-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6c757d; /* A different color for secondary action */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.back-to-tours-btn:hover {
  background-color: #5a6268;
}


@media (max-width: 768px) {
  .cookie-content, .cookie-settings {
    padding: 15px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
}  


/* Tour Image Gallery / Swiper Styles */
.tour-image-gallery {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee; /* Optional separator */
  margin-bottom: 20px;
}

/* If you've removed the H3 ("Bilder från...") from your HTML, 
   this rule won't apply to anything, which is fine, or you can delete it. */
.tour-image-gallery h3 {
  font-size: 1.6em;
  color: #333;
  margin-bottom: 20px;
}

.tour-image-gallery .swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Main image swiper - CRITICAL FOR SIZING THE LARGE IMAGE AREA */
.tour-image-gallery .mySwiper2 { 
  height: 65vh; /* Sets the height of the main image slider. Adjust as you like (e.g., 450px, 70vh). */
  width: 100%;
  margin-bottom: 10px; 
  border-radius: 8px; 
  background-color: #f0f0f0; /* Light background, visible if images don't fill space */
}

.tour-image-gallery .mySwiper2 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #f0f0f0; 
  display: flex;
  justify-content: center;
  align-items: center;
}

/* How images behave inside the main slider - CRITICAL FOR IMAGE SIZING */
.tour-image-gallery .mySwiper2 .swiper-slide img {
  display: block;
  width: auto;  /* Allows image to scale based on its aspect ratio and the height of container */
  height: 100%; /* Makes the image try to fill the height of the slide */
  max-width: 100%; /* Ensures image doesn't overflow the width of the slide */
  object-fit: contain; /* This is key: Scales the image to fit within the container while maintaining aspect ratio. 
                           If you want it to fill and crop, use 'cover'. */
  border-radius: 6px; 
}

.tour-image-gallery .mySwiper2 .swiper-button-next,
.tour-image-gallery .mySwiper2 .swiper-button-prev {
  color: #0056b3; 
}
.tour-image-gallery .mySwiper2 .swiper-button-next::after,
.tour-image-gallery .mySwiper2 .swiper-button-prev::after {
  font-size: 24px; 
}

/* Thumbnail swiper - CRITICAL FOR THUMBNAIL SIZING */
.tour-image-gallery .mySwiper { 
  height: 20%; 
  max-height: 120px; /* Adjust max height of the thumbnail strip */
  box-sizing: border-box;
  padding: 10px 0;
}

.tour-image-gallery .mySwiper .swiper-slide {
  height: 100%;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 4px; 
  overflow: hidden; 
}

.tour-image-gallery .mySwiper .swiper-slide:hover {
  opacity: 0.8;
}

.tour-image-gallery .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 3px solid #0056b3; 
  box-sizing: border-box;
}

/* How images behave inside thumbnails - CRITICAL FOR THUMBNAIL IMAGE SIZING */
.tour-image-gallery .mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures thumbnail images fill their space, cropping if necessary */
}

/* Ensure the back button has some top margin after the gallery */
.tour-detail-content .back-to-tours-btn {
    margin-top: 30px; 
}

/* Responsive adjustments for Swiper gallery */
@media (max-width: 768px) {
  .tour-image-gallery .mySwiper2 {
    height: 50vh; 
  }
}

@media (max-width: 480px) {
  .tour-image-gallery .mySwiper2 {
    height: 40vh; 
  }
  .tour-image-gallery .mySwiper2 .swiper-button-next::after,
  .tour-image-gallery .mySwiper2 .swiper-button-prev::after {
    font-size: 20px; 
  }
}
/* End of Tour Image Gallery / Swiper Styles */

body {
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  line-height: 1.6;
}
main.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.talk-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.2s ease;
}
.talk-card:hover {
  transform: scale(1.01);
}
.talk-card h4 {
  margin-top: 0;
  color: #990000;
}
.talk-card p {
  color: #444;
  line-height: 1.6;
}

/* Enhanced Gallery Styles */
.gallery-section {
  margin-bottom: 60px;
}

.gallery-section-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.gallery-section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #6B7A3A;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.gallery-item {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(26, 118, 210, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}

.show-more-container {
  text-align: center;
  margin: 30px 0;
}

.show-more-btn {
  background: #6B7A3A;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(26, 118, 210, 0.2);
}

.show-more-btn:hover {
  background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 118, 210, 0.3);
}

.gallery-extra {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.lightbox-caption {
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  margin-top: 20px;
  max-width: 600px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #6B7A3A;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 118, 210, 0.8);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(26, 118, 210, 1);
  transform: translateY(-50%) scale(1.1);
}

/* Enhanced page title */
.page-title p {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
  font-style: italic;
}

/* Responsive Gallery Adjustments */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-item {
    height: 200px;
  }
  
  .gallery-section-title {
    font-size: 24px;
  }
  
  .lightbox-content {
    max-width: 95%;
    max-height: 70%;
  }
  
  .lightbox-prev,
  .lightbox-next {
    padding: 10px 15px;
    font-size: 20px;
  }
  
  .lightbox-prev {
    left: 15px;
  }
  
  .lightbox-next {
    right: 15px;
  }
  
  .lightbox-close {
    right: 20px;
    font-size: 30px;
  }
}

