/* Scoped CSS within the #sun ID */

  /* Import fonts */
  @import url("https://web.archive.org/web/20240705025140cs_/https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&family=Young+Serif&display=swap");


#sun .sunset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 0 3rem;
}

/* ------ */
/* INTRO */

#sun #intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  padding: 40px;
  min-height: 70dvh;
  overflow: hidden;
}

#sun .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 50px;
}

#sun .info h1 {
  font-family: "Young Serif", serif;
  text-align: center;
  font-size: 3rem;
  color: #333333;
}

#sun .info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #666666;
}

#sun .split-beer {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 100%;
}

#sun .beer {
  max-width: 31%;
  width: 250px;
  border-radius: 20px;
  margin-left: 15px;
  border: 2px solid orange;
}

#sun .beer:nth-child(2) {
  transform: translateY(-1.5rem);
}

#sun .sar-button:after,
#sun .close-btn:after {
  background: #fff;
}

#sun .explore,
#sun .explore:before,
#sun .close-btn,
#sun .close-btn:before {
  background: rgba(255, 193, 7, 1);
  background: linear-gradient(
    45deg,
    rgba(255, 193, 7, 1) 0%,
    rgba(255, 87, 34, 1) 100%
  );
  background: -moz-linear-gradient(
    45deg,
    rgba(255, 193, 7, 1) 0%,
    rgba(255, 87, 34, 1) 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    rgba(255, 193, 7, 1) 0%,
    rgba(255, 87, 34, 1) 100%
  );
}

#sun .sar-button {
  display: inline-block;
  position: relative;
  border-radius: 10px;
  text-decoration: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease; /* Added transition */
  background-color: black; /* Set default background color to black */
  color: #fff; /* Set default text color to white */
}

#sun .sar-button:hover {
  text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 87, 34, 1); /* Adjusted background color on hover */
  color: #fff; /* Adjusted text color on hover */
}


#sun .sar-button:hover::after {
  left: 100%;
  top: 100%;
  bottom: 100%;
  right: 100%;
}

#sun .sar-button::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: inherit;
  transition: all 0.5s;
}

#sun .sar-button::after {
  content: "";
  display: block;
  position: absolute;
  left: 2.5px;
  top: 2px;
  bottom: 2.5px;
  right: 2px;
  z-index: -1;
  border-radius: 8px;
  transition: all 0.5s;
}

#sun .contact-buttons {
  display: flex;
  gap: 15px;
}

#sun .contact-buttons .sar-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #333333;
  color: #333333;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}

#sun .contact-buttons .sar-button:hover {
  background: #333333;
  color: #ffffff;
}

#sun .contact-buttons .sar-button i {
  margin-right: 8px;
  font-size: 20px;
}

#sun .no-dots {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sun .no-dots li {
  flex: 0 0 48%; /* Adjust the width as needed */
  padding-bottom: 5px; /* Adjust as needed */

}

#sun .info .sar-note {
  font-style: italic;
  color: #666;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 0.8em;
}

/* Updated Business Hours Toast Styles */
#sun .business-hours-toast {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 320px;
  margin: 20px auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#sun .toast-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#sun .toast-header i {
  color: #333333;
  margin-right: 8px;
  font-size: 20px;
}

#sun .toast-header span {
  color: #333333;
  font-weight: 500;
  font-size: 0.9rem;
}

#sun .toast-body {
  padding: 12px 16px;
}

#sun .hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.85rem;
}

#sun .hours-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#sun .hours-label {
  color: #666666;
  font-weight: 500;
}

#sun .hours-time {
  color: #333333;
  font-weight: 600;
}

/* Business Hours Styles */
#sun .business-hours {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

#sun .business-hours h3 {
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

#sun .hours-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#sun .hours-item {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

#sun .hours-item:last-child {
  border-bottom: none;
}

#sun .hours-item strong {
  display: block;
  color: #ff7e5f;
  margin-bottom: 5px;
}

#sun .hours-item p {
  margin: 0;
  color: #666;
}

/* ------ */
/* MEDIA QUERIES */

@media (max-width: 1100px) {
  #sun .beer {
    width: 200px;
  }

  #sun #content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  #sun #intro {
    padding: 30px;
  }

  #sun .beer {
    width: 150px;
  }

  #sun .info {
    gap: 20px;
    padding: 30px 30px;
  }

  #sun .info h1 {
    font-size: 2.5rem;
  }

  #sun .info p {
    font-size: 1rem;
  }

  #sun #content {
    gap: 30px;
    padding: 60px 20px;
  }

  #sun .sar-card {
    width: 250px;
  }

  #sun .split-beer {
    width: 100%;
    max-width: 100%;
  }

  #carousel62 {
    width: 100%;
    max-width: 100%;
  }

  #carousel62 .carousel-inner {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 550px) {
  #sun #intro {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas:
      "split-beer"
      "info";
  }

  #sun .info {
    grid-area: info;
  }

  #sun .split-beer {
    grid-area: split-beer;
    width: 100%;
    max-width: 100%;
    margin: 20px auto;
  }

  #sun .beer {
    width: 100px;
  }

  #sun #content {
    grid-template-columns: repeat(1, 1fr);
    padding: 40px 40px;
  }

  #sun .contact-buttons {
    flex-direction: column;
    width: 100%;
  }

  #sun .contact-buttons .sar-button {
    width: 100%;
  }

  #carousel62 {
    width: 100%;
    max-width: 100%;
  }

  #carousel62 .carousel-inner {
    aspect-ratio: 3/4;
  }

  #carousel62 .carousel-item img {
    object-position: center;
  }
}

#sun .coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff7e5f, #ffb199);
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(255, 126, 95, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  top: -10px;
  animation: fadeInBadge 1s ease-in-out;
}

@keyframes fadeInBadge {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}

.sunset-event-cta {
  padding: 0 3rem;
    background: #fff;
    background-image: radial-gradient(at 9.2% 73.7%, #ffddc9 0px, transparent 50%),
        radial-gradient(at 92.3% 7.6%, #fff9cf 0px, transparent 50%);
    background-repeat: no-repeat;
    padding: 80px 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.sunset-event-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.sunset-event-cta .container {
    position: relative;
    z-index: 2;
}

.sunset-event-cta .row {
    align-items: stretch;
    min-height: 600px;
}

.sunset-event-cta .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.cta-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#carousel62 {
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

#carousel62 .carousel-inner {
    height: 100%;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}

#carousel62 .carousel-item {
    height: 100%;
    width: 100%;
}

#carousel62 .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cta-content h2 {
    color: #333;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.event-highlights {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    flex-wrap: wrap;
    max-width: 500px;
}

.highlight-item {
    background: rgba(255, 221, 201, 0.3);
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    font-size: 0.85em;
    white-space: nowrap;
}

.highlight-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.highlight-item i {
    font-size: 1em;
    color: #ff7e5f;
}

.cta-description {
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
    font-size: 0.95em;
    text-align: left;
    padding: 0 15px;
}

.event-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
    padding: 0 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
}

.feature-item i {
    color: #3498db;
    font-size: 1.1em;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cta-buttons .btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 180px;
    font-size: 0.9em;
}

.cta-buttons .btn-primary {
    background: #3498db;
    border: none;
}

.cta-buttons .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.cta-buttons .btn-success {
    background: #ff7e5f;
    border: none;
}

.cta-buttons .btn-success:hover {
    background: #ff6b4a;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 1px solid #ff7e5f;
    color: #ff7e5f;
    border-radius: 8px;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 126, 95, 0.1);
    color: #ff7e5f;
}

.cta-image-left, .cta-image-right {
    position: relative;
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
    overflow: visible;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image-left {
    position: relative;
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
    overflow: visible;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.cta-image-left img {
    width: 200% !important; /* Make the left image bigger */
    max-width: none !important; /* Override any max-width constraints */
    height: auto;
    border-radius: 15px;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    position: relative;
    z-index: 1;
    margin-left: -50%; /* Center the oversized image */
}

.cta-image-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: 100%;
    max-height: 500px;
    align-items: center;
    justify-content: center;
}

.cta-image-right img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
}

/* Remove all tilt and 3D effects */
.cta-image-right img:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .sunset-event-cta .row {
        min-height: auto;
    }
    
    .sunset-event-cta .col-lg-6 {
        margin-bottom: 30px;
    }
    
    #carousel62 {
        min-height: 400px;
    }
    
    .cta-image-right {
        min-height: 300px;
        max-height: 400px;
        margin-bottom: 30px;
    }
    
    .cta-image-right img {
        object-position: center;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .sunset-event-cta {
        padding: 40px 0;
    }
    
    .cta-content {
        padding: 20px 15px;
    }
    
    .event-highlights {
        gap: 10px;
    }
    
    .highlight-item {
        padding: 6px 12px;
        font-size: 0.85em;
    }
}

@media (max-width: 576px) {
    .sunset-event-cta {
        padding: 30px 0;
    }
    
    .cta-content {
        padding: 15px 10px;
    }
    
    .event-highlights {
        gap: 8px;
        margin: 15px auto;
    }
    
    .highlight-item {
        padding: 5px 10px;
        font-size: 0.8em;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
        margin: 20px 0;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9em;
        margin: 0 5px;
    }

    .cta-description {
        font-size: 0.85em;
        padding: 0 15px;
        margin: 15px 0;
    }

    .event-features {
        padding: 0 15px;
        gap: 8px;
    }
    
    .feature-item {
        font-size: 0.85em;
    }
}

