

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 0px 10px;
    z-index: 1000;
}


.navbar .nav-links {
    display: flex;
}

.navbar a {
    color: #fff;
    margin: 0 15px;
    font-size: 1.2em;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ff4500;
}

@media (max-width: 700px) {
    .navbar a {
        margin: 0 5px;
        font-size: .8em;
    }
}

/* General Styling for the Cart Icon */
/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cart-icon i {
    font-size: 1.8em;
    transition: color 0.3s ease;
}

.cart-icon:hover i {
    color: #ff6a3d;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ff6a3d;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 0.9em;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: #fdfdfd;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 1001;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-y: auto;
}

.cart-sidebar.open {
    transform: translateX(0%);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.cart-header h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: #ff6a3d;
    margin: 0;
}

.cart-header button {
    background: none;
    border: none;
    font-size: 1.5em;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-header button:hover {
    color: #ff6a3d;
}

/* Cart Items */
.cart-items {
    margin-top: 20px;
    max-height: 70%;
    overflow-y: auto;
    padding-right: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cart-item img {
    height: 50px;
    width: 50px;
    border-radius: 5px;
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
    margin-left: 10px;
}

.cart-item-info h4 {
    font-size: 1em;
    margin: 0;
    font-weight: 500;
    color: #333;
}

.cart-item-info p {
    font-size: 0.9em;
    color: #888;
    margin: 5px 0 0;
}

.cart-item button {
    background: #ff6a3d;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cart-item button:hover {
    background: #e55a2c;
}

/* Total Section */
.cart-total {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
}

.cart-total h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #333;
}

.cart-total .total-amount {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff6a3d;
    margin-bottom: 20px;
}

.cart-total button {
    background-color: #ff6a3d;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cart-total button:hover {
    background-color: #e55a2c;
    transform: scale(1.05);
}

/* Scrollbar Styling */
.cart-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-thumb {
    background-color: #ff6a3d;
    border-radius: 8px;
}

.cart-items::-webkit-scrollbar-track {
    background: #f0f0f0;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* Container to hold the carousel */
  .carousel-container {
    width: 100%;
    height: 100vh; /* Set the height of the carousel to 100% of the viewport height */
    overflow: hidden; /* Hide anything that exceeds the container */
    position: relative;
  }
  
  /* The carousel itself */
  .carousel {
    display: flex;
    width: 100%; /* Adjust width based on the number of items (each item takes 100% width) */
    height: 100%;
    position: relative;
    animation: slide 20s infinite;
  }
  
  /* Carousel items (images) */
  .carousel-item {
    flex: 0 0 100%; /* Each item will take 100% of the container width */
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
  }
  
  /* Background images for the items */
  .item1 {
    background-image: url('../assets/images/carousel.png');
  }
  
  .item2 {
    background-image: url('../assets/images/carousel2.png');
  }
  
  .item3 {
    background-image: url('../assets/images/carousel3.png');
  }
  
  .item4 {
    background-image: url('../assets/images/carousel4.png');
  }
  
  /* Animation for sliding */
  @keyframes slide {
    0% { transform: translateX(0%); }
    12.5% { transform: translateX(0%); } 
    25% { transform: translateX(-100%); }
    37.5% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    62.5% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    87.5% { transform: translateX(-300%); }
    100% { transform: translateX(0%); }
  }
  
  /* Optional content styling for text over images */
  .content {
    position: absolute;
    z-index: 2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
/* Tour Section */
.tour-section {
    padding: 80px;
    background-color: #f5f5f5;
    color: #333;
}

.tour-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

select {
    padding: 90px;
    font-size: 1rem;
    margin: 20px 0;
}

#showList {
    margin-top: 20px;
}


/* Tour Section Styling */
.tour-container > .pg-name {
    padding: 10px;
    margin-top: 50px;
}


.tour-section {
    padding: 40px 20px;
    background-color: #f5f5f5;
}

.tour-section .tour-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tour-section select {
    padding: px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    width: 250px;
    font-size: 1em;
}

.tour-section .map-container {
    width: 100%;
    height: 400px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tour-section .show-list {
    margin-top: 40px;
    text-align: left;
}

.show-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.show-item h3 {
    margin-bottom: 10px;
}

.show-item p {
    margin: 5px 0;
}

.show-item button {
    padding: 10px 20px;
    background-color: #ff4500;
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.show-item button:hover {
    background-color: #e64a19;
}



/* Existing styles with added improvements */
.container {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h3 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}

input[type=text], input[type=email] {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.price {
    font-weight: bold;
    color: #333;
}
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

html {
  font-family: 'Montserrat', Arial, sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  /* background: linear-gradient(45deg, #111, #222); */
  background-color: #000;
  /* color:#333; */
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

#contact-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #000000;
  border: 1px solid #000000;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}

h1 {
  font-size: 24px;
  color: #ff4444;
  margin-bottom: 10px;
  text-transform: uppercase;
}



.input-group {
  margin-bottom: 15px;
  text-align: left;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #000000;
  border-radius: 4px;
  
  color: #000000 ;
  font-size: 14px;
  font-family: inherit;
  transition: border 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #ff4444;
  outline: none;
}

button#submit-button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: #ff4444;
  color: #eee;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button#submit-button:hover {
  background: #ff6666;
  transform: scale(1.05);
}

button#submit-button:active {
  transform: scale(0.98);
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 20px;
  }

  input, select, textarea {
    font-size: 12px;
  }

  button#submit-button {
    font-size: 14px;
  }
}
/* Universal Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Montserrat', Arial, sans-serif;
    height: 100%;
    /* background: linear-gradient(45deg, #111, #222); */
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

h1, h3 {
    text-transform: uppercase;
    color: #ff4444;
}

button {
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    transform: scale(1.05);
}

button:active {
    transform: scale(0.98);
}

/* Header Section */
header {
    height: 100vh;
  
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

header h1 {
    font-size: 3.5em;
    margin-bottom: 1px;
    z-index: 2;
}

header p {
    font-size: 1.5em;
    margin-bottom: 20px;
    z-index: 2;
}

header a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff4500;
    color: white;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s;
    z-index: 2;
}

header a:hover {
    background-color: #e63e00;
}

/* Advanced Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* Item Box */
.item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    text-align: center;
    overflow: hidden;
    color: #000000;
}

/* Hover Effects */
.item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.item img {
    width: 100%;
    border-radius: 6px;
    transition: transform 0.3s ease-in-out;
}

.item:hover img {
    transform: scale(1.05);
}

/* Button Styling */
.item button {
    margin-top: 10px;
    padding: 10px 18px;
    background-color: #ff6a3d;
    color: white;
    border-radius: 6px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.item button:hover {
    background-color: #e63e00;
}

/* Sold-Out Styling */
.sold-out {
    position: relative;
    pointer-events: none;
}

.sold-out img {
    filter: grayscale(70%) brightness(80%);
}

.sold-out button {
    background: #ccc;
    cursor: not-allowed;
}

/* Size Selector */
.size-select {
    margin-top: 10px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Badge Styling */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4500;
    color: white;
    padding: 5px 12px;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 5px;
}


/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Import Google font */
@import url('https://fonts.googleapis.com/css?family=Hind:300,400&display=swap');

/* Scoped styles for the FAQ section */
.faq {
    font-family: 'Hind', sans-serif;
    background: #fff;
    color: #4d5974;
    width: 85%;
    max-width: 100rem;
    margin: 6rem auto; /* Increased top margin to push the FAQ section lower */
    padding: 3rem; /* Reduced padding */
  }
  
  .faq .accordion {
    width: 100%;
  }
  
  .faq .accordion-item {
    border-bottom: 1px solid #e5e5e5;
  }
  
  .faq button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 0.8em 0; /* Reduced padding */
    color: #7288a2;
    font-size: 1rem; /* Reduced font size */
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    padding-right: 25px;
  }
  
  .faq button:hover,
  .faq button:focus {
    color: #03b5d2;
  }
  
  .faq .accordion-title {
    padding: 0.8em 1.2em 0.8em 0; /* Reduced padding */
  }
  
  .faq .icon {
    display: inline-block;
    position: absolute;
    top: 16px; /* Adjusted for reduced padding */
    right: 0;
    width: 18px; /* Reduced size */
    height: 18px; /* Reduced size */
    border: 1px solid;
    border-radius: 50%;
  }
  
  .faq .icon::before {
    content: '';
    position: absolute;
    top: 8px; /* Adjusted for reduced size */
    left: 4px; /* Adjusted for reduced size */
    width: 8px; /* Adjusted for reduced size */
    height: 2px;
    background: currentColor;
  }
  
  .faq .icon::after {
    content: '';
    position: absolute;
    top: 4px; /* Adjusted for reduced size */
    left: 7px; /* Adjusted for reduced size */
    width: 2px;
    height: 8px; /* Adjusted for reduced size */
    background: currentColor;
  }
  
  .faq button[aria-expanded='true'] {
    color: #03b5d2;
  }
  
  .faq button[aria-expanded='true'] .icon::after {
    width: 0;
  }
  
  .faq .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: scroll;
    transition: opacity 200ms linear, max-height 200ms linear;
  }
  
  .faq button[aria-expanded='true'] + .accordion-content {
    opacity: 1;
    max-height: 6em; /* Reduced max-height */
  }
  
  .faq .accordion-content p {
    font-size: 0.9rem; /* Reduced font size */
    font-weight: 300;
    margin: 1.5em 0; /* Reduced margin */
  }
  
.nav-logo img {
    height: 60px; /* Adjust logo size */
    
}


/* Band Blurb Section */
.band-blurb {
    background-color: rgba(255, 106, 61, 0.7);  /* Semi-transparent background color */
    color: #ffffff;
    padding: 25px 13px 35px;  /* Reduced top padding */
    text-align: center;
    font-family: 'Roboto', sans-serif;
    margin-top: 60px;  /* Push the section down */
    background-image: url('../assets/images/blurb.png');  /* Add your transparent image here */
    background-size: cover;  /* Ensure the image covers the entire section */
    background-position: center;  /* Center the image */
}

.band-blurb h2 {
    font-size: 1.5rem;  
    margin-bottom: 10px;
    font-weight: bold;
}/* Band Blurb Section */



  /* Main Container */
  #contact-container {
    padding: 50px;
    text-align: center;
    background-color: #f4f4f4;
    margin-top: 100vh; /* To test scrolling */
  }
  .underline {
    width: 50px;
    height: 4px;
    background-color: #ff6a3d;
    margin: 10px auto;
  }
  .input-group {
    margin: 15px 0;
  }
  input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
  }
  

  /* Contact Card */
  .contact-card {
    
    position: fixed;
    top: 220px;
    right: -400px; /* Hidden off-screen initially */
    width: 350px;
    padding: 15px;
    border-radius: 8px;
    background-color:whitesmoke ;
    color: black;
    box-shadow: 3px  3px 8px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
  }
  .contact-card.show {
    right: 20px; /* Slide in */
  }
  .close-btn {
    position: absolute;
    top: 15px;
    right: 10px;
    width: 30px;
    height: 20px;
    background-color: #ff1a1a;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
  }
  .close-btn:hover {
    background-color: black;
  }
  .life-changing-experience {
    text-align: center;
    margin: 50px auto;
    padding: 20px;
    background: rgba(7, 7, 7, 0.8);
    color: #fff;
    border-radius: 10px;
    max-width: 100%;
}

.life-changing-experience h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.video-container {
    margin: 10px auto;
    max-width: 90%;
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border-radius: 8px;
}

.life-changing-experience a {
    color: #ff6a3d;
    font-weight: bold;
    text-decoration: none;
}

.life-changing-experience a:hover {
    text-decoration: underline;
}

   /* Accessibility Bubble */
        .accessibility-bubble {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #333;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            cursor: pointer;
            z-index: 1000;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .accessibility-bubble:hover {
            transform: scale(1.1);
            background-color: #ff6a3d;
        }

        /* Accessibility Toolbar */
        .accessibility-toolbar {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 350px;
            background-color: #333;
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .toolbar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .toolbar-header h3 {
            margin: 0;
        }

        .close-button {
            background: none;
            color: #fff;
            border: none;
            font-size: 18px;
            cursor: pointer;
        }

        .toolbar-options div {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .toolbar-options label {
            font-size: 14px;
        }

        .toolbar-options button {
            background-color: #fff;
            color: #000;
            border: none;
            padding: 8px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .toolbar-options button:hover {
            background-color: #ff6a3d;
            color: #fff;
        }

        .text-resize-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .text-resize-wrapper span {
            font-size: 14px;
            color: #fff;
        }

        /* Accessibility Features */
       /* High-Contrast Mode */
.high-contrast {
    background-color: #000 !important; /* Pure black background */
    color: #fff !important;           /* Pure white text */
    filter: none !important;          /* Ensure no other filters interfere */
}

/* High-Contrast Links */
.high-contrast a {
    color: #0fffeb  !important;        /* Bright orange links for clear distinction */
    text-decoration: underline !important; /* Reinforce visibility */
    font-weight: bold !important;     /* Emphasize clickable links */
}

/* High-Contrast Buttons */
.high-contrast button {
    background-color: #020202 !important; /* Dark gray buttons for contrast */
    color: #fff !important;            /* White text for clarity */
    border: 2px solid #0fffeb !important; /* Bright orange border for emphasis */
    font-weight: bold;                 /* Ensure buttons are visually prominent */
            /* Reinforce visibility through text styling */
    transition: background-color 0.3s ease; /* Smooth interaction feedback */
}

.high-contrast button:hover {
    background-color: #0fffeb  !important; /* Highlight button when hovered */
    color: #000 !important;              /* Invert colors for hover effect */
}

/* High-Contrast Inputs */
.high-contrast input, .high-contrast textarea, .high-contrast select {
    background-color: #222 !important;   /* Very dark background */
    color: #fff !important;              /* White text */
    border: 2px solid #0fffeb  !important; /* Bright border for visibility */
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;                  /* Retain modern design */
}

.high-contrast input:focus, 
.high-contrast textarea:focus, 
.high-contrast select:focus {
    outline: 2px solid#0fffeb  !important; /* Highlight focused elements */
}

/* High-Contrast Headings */
.high-contrast h1, .high-contrast h2, .high-contrast h3, 
.high-contrast h4, .high-contrast h5, .high-contrast h6 {
    color: #0fffeb !important;          /* Bright orange for headings */
    font-weight: bold;                  /* Reinforce hierarchy */
    text-transform: uppercase;          /* Increase visibility */
}

/* High-Contrast Tables */
.high-contrast table {
    border: 2px solid #fff !important;  /* White borders for tables */
    background-color: #000 !important;  /* Black background for contrast */
    color: #fff !important;             /* White text for table content */
}

.high-contrast th, .high-contrast td {
    border: 1px solid #0fffeb !important; /* Bright borders for table cells */
    padding: 10px;
}

/* High-Contrast Icons */
.high-contrast i, .high-contrast svg {
    fill:#0fffeb  !important;           /* Bright orange for icons */
}

/* High-Contrast Forms */
.high-contrast label {
    font-weight: bold;                  /* Ensure labels are clear */
    color: #fff !important;             /* White text for labels */
}

/* High-Contrast Borders */
.high-contrast .bordered {
    border: 2px solid #ff6a3d !important; /* Bright orange borders for emphasis */
}

/* High-Contrast Notifications or Alerts */
.high-contrast .alert {
    background-color: #444 !important;  /* Dark background */
    color: #0fffeb !important;          /* Bright text for attention */
    border: 2px solid #0fffeb  !important; /* Bold border for focus */
    padding: 15px;
    border-radius: 5px;
}

/* High-Contrast Focus Indicators */
.high-contrast :focus {
    outline: 3px solid #0fffeb  !important; /* Bright orange outline */
    outline-offset: 2px;                  /* Add spacing around focus outline */
}

/* High-Contrast Hover Effects */
.high-contrast a:hover, 
.high-contrast button:hover {
    background-color: #0fffeb !important; /* Bright orange hover state */
    color: #000 !important;              /* Contrast with hover background */
    text-decoration: none !important;    /* Remove underlines for hover state */
}

/* High-Contrast Scrollbars (Modern Browsers) */
.high-contrast ::-webkit-scrollbar {
    width: 12px;
}

.high-contrast ::-webkit-scrollbar-track {
    background: #222;
}

.high-contrast ::-webkit-scrollbar-thumb {
    background: #0fffeb ;
    border-radius: 6px;
}

.high-contrast ::-webkit-scrollbar-thumb:hover {
    background: #0fffeb ; /* Lighter orange for hover state */
}


    

        
        /* Text Size Adjustments */
        .text-size-1 {
            font-size: 70% !important;
        }

        .text-size-2 {
            font-size: 80% !important;
        }

        .text-size-3 {
            font-size: 100% !important;
        }

        .text-size-4 {
            font-size: 110% !important;
        }

        .text-size-5 {
            font-size: 120% !important;
        }
        .nav-links a {
            text-decoration: none;
        }
        a {
            text-decoration: none;
        }
        .cart-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .cart-item-image {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            object-fit: cover;
        }
        
        .cart-item-details {
            flex-grow: 1;
        }
       /* Thank You Section */
/* Thank You Section */
.thank-you-section {
    text-align: center;
    margin: 10px 0;

    background: transparent; /* Removed background to focus on the image */
    font-family: 'Poppins', sans-serif;
    position: relative;
}

/* Image Container */
.image-container {
    position: relative;
    display: inline-block;
}

/* Image Styling */
.thank-you-photo {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    margin-bottom: 20px;
}

/* Send Love Button */
.send-love-button {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the button */
    padding: 1em 2em; /* Use relative units for padding */
    color: white;
    background-color: #e63946;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    max-width: 200px; /* Limit the width on larger screens */
    width: 90%; /* Make it responsive on smaller screens */
    margin: 0 auto;
}

.send-love-button:hover {
    background-color: #ff6a3d;
    transform: translate(-50%, -50%) translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for small screens */
@media (max-width: 600px) {
    .send-love-button {
        font-size: 0.9rem; /* Adjust font size for smaller screens */
        padding: 0.8em 1.5em; /* Adjust padding on small screens */
    }
}


	/* customizable heart styling */
	.heart {
        color: #800000;
        font-size: 2em;
        font-family: Arial, sans-serif;
        text-shadow: 0 0 5px #ffffff;
      }
      
  
      @-webkit-keyframes hearts-fall{0%{top:-10%}100%{top:100%}}@-webkit-keyframes hearts-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}50%{-webkit-transform:translateX(80px);transform:translateX(80px)}}@keyframes hearts-fall{0%{top:-10%}100%{top:100%}}@keyframes hearts-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.heart{position:fixed;top:-10%;z-index:9999;-webkit-animation-name:hearts-fall,hearts-shake;animation-duration:10s,3s;-webkit-animation-timing-function:linear,ease-in-out;-webkit-animation-iteration-count:infinite,infinite;-webkit-animation-play-state:running,running;animation-name:hearts-fall,hearts-shake;animation-duration:10s,3s;animation-timing-function:linear,ease-in-out;animation-iteration-count:infinite,infinite;animation-play-state:running,running}.heart:nth-of-type(0){left:1%;-webkit-animation-delay:0s,0s;animation-delay:0s,0s}.heart:nth-of-type(1){left:10%;-webkit-animation-delay:1s,1s;animation-delay:1s,1s}.heart:nth-of-type(2){left:20%;-webkit-animation-delay:6s,.5s;animation-delay:6s,.5s}.heart:nth-of-type(3){left:30%;-webkit-animation-delay:4s,2s;animation-delay:4s,2s}.heart:nth-of-type(4){left:40%;-webkit-animation-delay:2s,2s;animation-delay:2s,2s}.heart:nth-of-type(5){left:50%;-webkit-animation-delay:8s,3s;animation-delay:8s,3s}.heart:nth-of-type(6){left:60%;-webkit-animation-delay:6s,2s;animation-delay:6s,2s}.heart:nth-of-type(7){left:70%;-webkit-animation-delay:2.5s,1s;animation-delay:2.5s,1s}.heart:nth-of-type(8){left:80%;-webkit-animation-delay:1s,0s;animation-delay:1s,0s}.heart:nth-of-type(9){left:90%;-webkit-animation-delay:3s,1.5s;animation-delay:3s,1.5s}.heart:nth-of-type(10){left:25%;-webkit-animation-delay:2s,0s;animation-delay:2s,0s}.heart:nth-of-type(11){left:65%;-webkit-animation-delay:4s,2.5s;animation-delay:4s,2.5s}
      /* Initially hide the hearts */
.hearts {
    display: none;
    /* Optional styles for heart */
    font-size: 24px;
    color: red;
    margin: 5px;
}

/* You can adjust the styling of individual hearts if needed */
.heart {
    font-size: 24px;
    color: red;
    margin: 5px;
}
.gift_section {
    padding-left: 45px;
    padding-right: 45px;
  }
  
  .gift_section .box {
    background-color: #6929a5;
    border-radius: 15px;
    color: #ffffff;
  }
  
  .gift_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .gift_section .img-box {
    padding: 60px 0 60px 25px;
  }
  
  .gift_section .img-box img {
    width: 100%;
  }
  
  .gift_section .detail-box {
    padding: 0 25px;
  }
  
  .gift_section .detail-box p {
    margin-top: 5px;
  }
  
  .gift_section .detail-box .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 35px -5px 0;
  }
  
  .gift_section .detail-box .btn-box a {
    width: 165px;
    text-align: center;
    margin: 5px;
  }
  
  .gift_section .detail-box .btn-box .btn1 {
    display: inline-block;
    padding: 10px 0;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    border-radius: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  .gift_section .detail-box .btn-box .btn1:hover {
    background-color: transparent;
    color: #ffffff;
  }
  
  .gift_section .detail-box .btn-box .btn2 {
    display: inline-block;
    padding: 10px 0;
    background-color: #9242dd;
    color: #ffffff;
    border: 1px solid #9242dd;
    border-radius: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  .gift_section .detail-box .btn-box .btn2:hover {
    background-color: transparent;
    color: #9242dd;
  }
  
  .merch-blurb {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 60px; /* Increased top padding */
    margin-bottom: -5px; /* Pulls up to remove gap */
}

.merch-blurb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px; /* Sharper corners */
     /* Crops bottom slightly */
    display: block; /* Ensures no extra space below the image */
}
