body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #ccc;
    background-color: #1e1e1e;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #141414;
    color: #fff;
}

header .logo-text h1, header .logo-text {
    margin: 0;
}

h2 {
    margin: 0;
    color: #b09a4f;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav ul li a {
    color: #b09a4f;
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    background-color: #141414; /* Ensure the background color is consistent */
}

nav ul li a:hover,
nav ul li a::selection,
nav ul li a:focus,
nav ul li a:active {
    background-color: #141414; /* Ensure background remains the same on hover, focus, and active */
    color: #b09a4f; /* Maintain text color as well */
    outline: none; /* Remove any default outline */
}

.hero {
    background-color: #392F30;
    background-image: url('car-background.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
}

.logo-centered {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.logo-centered img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    border-radius: 50%;
    opacity: 0.9;
}

.hero-text {
    position: relative;
    z-index: 1;
    color: #fff;
}

.hero-text h1 {
    font-size: 40px;
    margin: 10px 0;
    color: #b09a4f;
}

.hero-text h2 {
    font-size: 28px;
    margin: 10px 0;
    color: #ddd;
}

.hero-text p {
    font-size: 18px;
    margin: 10px 0;
    color: #bbb;
}

.hero-text .btn {
    padding: 10px 20px;
    background-color: #b09a4f;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;
}

.content {
    text-align: center;
    padding: 40px 20px;
    background-color: #2a2a2a;
}

.content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #b09a4f;
}

.content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    max-width: 250px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card img {
    width: 100%;
    border-radius: 5px;
}

.card h4 {
    font-size: 18px;
    margin: 15px 0 10px;
    color: #b09a4f;
}

.card p {
    font-size: 16px;
    color: #bbb;
}

footer {
    background-color: #141414;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-content .footer-section h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #b09a4f;
}

.footer-content .footer-section p {
    margin: 5px 0;
    font-size: 14px;
}

/* Social Media Icons in Footer */
.footer-section.social {
    text-align: center;
}

.footer-section.social .social-icons {
    margin-top: 10px;
}

.footer-section.social .social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #b09a4f;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section.social .social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Responsive Adjustments for Social Icons */
@media (max-width: 768px) {
    .footer-section.social .social-icons a {
        font-size: 20px;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .footer-section.social .social-icons a {
        font-size: 18px;
        margin: 0 5px;
    }
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 14px;
}

.footer-bottom a {
    color: #b09a4f;
    text-decoration: none;
}

.hero-small {
    background-color: #392F30;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    color: #fff;
}

.hero-small h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #b09a4f;
}

.hero-small p {
    font-size: 18px;
    margin: 0;
}

.catalog {
    padding: 40px 20px;
    text-align: center;
    background-color: #2a2a2a;
}

.catalog h2 {
    font-size: 28px;
    color: #b09a4f;
    margin-bottom: 20px;
}

.catalog p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.catalog-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.catalog-table thead {
    background-color: #141414;
    color: #b09a4f;
}

.catalog-table thead th {
    padding: 10px;
    font-size: 16px;
    font-weight: normal;
}

.catalog-table tbody td {
    padding: 10px;
    border-bottom: 1px solid #444;
    font-size: 14px;
    color: #ccc;
}

.catalog-table tbody tr:hover {
    background-color: #333;
}

.catalog-table tbody td img {
    width: 150px;
    height: auto;
    border-radius: 5px;
}

.table-container {
    overflow-x: auto;
}

/* Responsive Table Adjustments */
@media (max-width: 768px) {
    .catalog-table th, .catalog-table td {
        font-size: 12px;
        padding: 8px;
    }

    .catalog-table tbody td img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .catalog-table, .catalog-table th, .catalog-table td {
        display: block;
        width: 100%;
        text-align: left;
        padding-left: 0;
        position: relative;
        white-space: normal; /* Allow text to wrap and avoid overflow */
        word-wrap: break-word;
    }

    .catalog-table tbody tr.desktop-only {
        display: none;
      }

    .catalog-table thead th {
        padding: 0;
        margin: 0;
        display: none;
    }

    .catalog-table tbody tr {
        margin-top: 0; 
    }

    .catalog-table th::before,
    .catalog-table td::before {
        content: attr(data-label);
        position: relative;
        width: auto;
        padding-left: 0;
        text-align: left;
        font-weight: bold;
        display: inline-block;
        margin-right: 10px;
    }

    .catalog-table tbody td img {
        width: 250px;
        display: block;
        margin: 0 auto 10px;
    }

    .catalog-table tbody tr {
        margin-bottom: 10px;
        padding: 10px;
        border-bottom: 1px solid #444;
        background-color: #2a2a2a;
    }
}

.table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Enable momentum scrolling on iOS */
}

body {
    padding: 10px;
    background-color: #1e1e1e; /* Ensure background matches the rest of the site */
}

.catalog {
    padding: 20px 10px;
}

@media (max-width: 768px) {
    body {
        padding: 10px 10px; /* Add padding to avoid content touching screen edges */
    }

    .catalog {
        padding: 20px 10px;
    }
}

.logo-link {
    text-decoration: none;
    color: inherit; 
    display: block; 
}

.logo-link:hover {
    cursor: pointer; 
}

.booking-form {
    background-color: #2a2a2a;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.booking-form form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #b09a4f;
    margin-bottom: 5px;
    display: block;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 5px #b09a4f;
}

.btn {
    padding: 10px 20px;
    background-color: #b09a4f;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #a38744;
}


/* Slideshow container */
.slideshow-container {
    max-width: 60%; /* Maintain the container size */
    margin: 20px auto; /* Center the slideshow with margin on top and bottom */
    position: relative;
    height: 500px; /* Set a fixed height for the container */
    display: flex; /* Use flexbox to center the images */
    align-items: center; /* Vertically center the images */
    justify-content: center; /* Horizontally center the images */
    overflow: hidden; /* Ensure no overflow beyond the container */
}

/* Images within the slideshow */
.mySlides {
    position: relative; /* Ensure the price sticker is positioned relative to the image container */
    display: inline-block; /* This helps in maintaining the image's dimensions without flexbox adjustments */
}

.mySlides img {
    width: 100%; /* Make the image take up the full width of the container */
    height: auto; /* Maintain aspect ratio */
    max-height: 100%; /* Prevent the image from exceeding the container's height */
    object-fit: contain; /* Ensures the image fits within the container without distortion */
}

.price-sticker {
    position: absolute;
    top: 15px; /* Position from the top of the container */
    right: 15px; /* Position from the right of the container */
    background-color: #b09a4f;
    color: #fff;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10; /* Ensure the price is on top of the slideshow */
    pointer-events: none; /* Prevent mouse interactions */
}

/* Hide the previous and next buttons */
.prev, .next {
    visibility: hidden;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    border:#141414;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}


/* Social Media Section */
.social-media {
    text-align: center;
    padding: 40px 20px;
    background-color: #2a2a2a;
    color: #fff;
}

.social-media h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #b09a4f;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.social-icons a {
    color: #b09a4f;
    font-size: 50px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: "Font Awesome 5 Brands";
    text-decoration: none; 
}

.social-icons a:hover {
    color: #fff;
    transform: scale(1.2);
    font-family: "Font Awesome 5 Brands";
}

/* Footer Section Styling */
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-content .footer-section h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #b09a4f;
}

.footer-content .footer-section p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 14px;
    color: #b09a4f;
}

.footer-bottom a {
    color: #b09a4f;
    text-decoration: none;
}


.footer-section.socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-items: center; 
    justify-content: top; 
    gap: 10px;
}

.footer-section.socials a {
    margin-bottom: 10px; /* Adjust spacing between icons as needed */
}

/* Optional: Adjust size and appearance of icons */
.footer-section.socials a {
    font-size: 24px; /* Adjust icon size */
    color: #ffffff; /* Adjust icon color */
    text-decoration: none;
    font-family: "Font Awesome 5 Brands";
}

.footer-section.socials a:hover {
    color: #007bff; /* Change color on hover */
    font-family: "Font Awesome 5 Brands";
}

/* TikTok Embed Styling */
.tiktok-embed {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.tiktok-embed a {
    color: #007bff; /* Links color */
    text-decoration: none;
    font-weight: bold;
}

.tiktok-embed a:hover {
    text-decoration: underline;
}

.brand-columns {
    display: flex;
    justify-content: space-between;
}

.column {
    width: 48%; /* Adjust as necessary to fit your design */
}

.column p {
    margin: 10px 0;
}

/* Center the recaptcha widget */
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 1.5em 0;
  }

  .wedding-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111;
    color: #fff;
    padding: 40px;
    flex-wrap: wrap;
  }
  .wedding-banner img {
    max-width: 100%;
    width: 400px;
    border-radius: 8px;
    margin: 0 20px 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  }
  .wedding-banner .banner-text {
    max-width: 600px;
  }
  .wedding-banner .banner-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .wedding-banner .banner-text p {
    margin-bottom: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .wedding-banner {
      flex-direction: column;
      padding: 20px;
    }
    .wedding-banner img {
      margin: 0 0 20px 0;
      width: 100%;
    }
    .wedding-banner .banner-text h2 {
      font-size: 1.75rem;
    }
  }