/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    background: url('images/View\ of\ Cardiff.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-section.parallax {
    background-attachment: fixed;
    background-size: cover;
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.65);
    padding: 40px;
    border-radius: 12px;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
  }
  
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
  }
  
  @keyframes fadeInUp {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @media (max-width: 768px) {
    .hero-section {
      height: 50vh;
    }
    .hero-content h1 {
      font-size: 2rem;
    }
  } .cta-section a {
    color: white;
      text-decoration: none;
  }
  
  /* Contact Form Section */
  .contact-form-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form {
    display: grid;
    gap: 20px;
  }
  
  .form-group {
    position: relative;
  }
  
  .form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: left;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    outline: none;
  }
  
  .form-group input:not(:placeholder-shown) + label,
  .form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-25px);
    font-size: 0.8rem;
    color: var(--accent-color);
  }
  
  .form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .form-group.checkbox input {
    width: auto;
  }
  
  .form-group.checkbox label {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
  }
  
  .contact-form .btn-primary {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal.active {
    display: flex;
  }
  
  .modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: fadeIn 0.5s ease;
  }
  
  .modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  
  /* Contact Details Section */
  .contact-details-section {
    padding: 60px 20px;
  }
  
  .details-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .details-card {
    width: 50%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .details-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .details-card address {
    font-family: 'Lora', serif;
    font-style: normal;
    line-height: 1.6;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: var(--accent-color);
  }
  
  .details-image {
    width: 50%;
  }
  
  .details-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  @media (max-width: 768px) {
    .details-container {
      flex-direction: column;
    }
    .details-card, .details-image {
      width: 100%;
    }
  }
  
  /* Getting Here Section */
  .getting-here-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
  }
  
  .collapsible-container {
    max-width: 800px;
    margin: 20px auto;
  }
  
  .collapsible-item {
    margin-bottom: 10px;
  }
  
  .collapsible-toggle {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s;
  }
  
  .collapsible-toggle:hover, .collapsible-toggle.active {
    background: var(--primary-color);
    color: #fff;
  }
  
  .collapsible-content {
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    font-family: 'Lora', serif;
    animation: slideDown 0.3s ease;
  }
  
  .collapsible-content.active {
    display: block;
  }
  
  @keyframes slideDown {
    from { height: 0; opacity: 0; }
    to { height: auto; opacity: 1; }
  }
  
  .map-container {
    margin-top: 20px;
  }
  
  .map-container iframe {
    border-radius: 12px;
  }