/**
 * SETTLED Landing Page Styles
 * Bishop Mike Okonkwo Event - May 2026
 * #BMOIreland2026
 */

/* ===== Global Styles ===== */
.settled-landing-page {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

.settled-landing-page .section-bg {
  background-color: #f8f9fa;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #c19a2e 100%);
  margin: 0 auto 15px;
  border-radius: 2px;
}

/* ===== Header Styles ===== */
.settled-header {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px);
  z-index: 997;
  transition: all 0.5s;
}

.settled-header.header-scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Hero Section ===== */
#settled-hero {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url('../img/hero-background.jpg'); /* Add your hero image here */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 120px 0 80px 0;
}

.settled-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

#settled-hero .container {
  z-index: 2;
  position: relative;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-title .highlight {
  color: #d4af37;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
  text-shadow: 
    0 0 10px rgba(212, 175, 55, 0.8),
    0 0 20px rgba(212, 175, 55, 0.6),
    3px 3px 6px rgba(0, 0, 0, 0.7);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  color: #ecf0f1;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-hashtag {
  font-size: 1.5rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.btn-cta {
  background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
  color: #ffffff;
  border: none;
  padding: 18px 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #FFD700 0%, #d4af37 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
  color: #ffffff;
}

.btn-cta:active {
  transform: translateY(-1px);
}

/* ===== Event Essence Section ===== */
.event-essence {
  padding: 80px 0;
}

.essence-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #34495e;
  margin-top: 20px;
}

/* ===== Schedule Section ===== */
.schedule {
  padding: 80px 0;
  background: #ffffff;
}

.schedule-box {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.schedule-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d4af37 0%, #c19a2e 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.schedule-box:hover::before {
  transform: scaleX(1);
}

.schedule-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
  border-color: #d4af37;
}

.schedule-box.featured {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  border: 2px solid #d4af37;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

.schedule-box.featured:hover {
  transform: translateY(-10px) scale(1.05);
}

.schedule-box.featured h3,
.schedule-box.featured .schedule-time,
.schedule-box.featured p {
  color: #ffffff;
}

.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ecf0f1;
}

.schedule-box.featured .schedule-date {
  border-bottom-color: rgba(212, 175, 55, 0.3);
}

.schedule-date .day {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #7f8c8d;
  letter-spacing: 1px;
}

.schedule-box.featured .schedule-date .day {
  color: #d4af37;
}

.schedule-date .date {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 5px;
}

.schedule-box.featured .schedule-date .date {
  color: #ffffff;
}

.schedule-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.schedule-time {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4af37;
  text-align: center;
  margin-bottom: 15px;
}

.schedule-time i {
  margin-right: 8px;
}

.schedule-box p {
  color: #7f8c8d;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 0;
}

/* ===== Video Teaser Section ===== */
.video-teaser {
  padding: 80px 0;
}

.video-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #000000;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.video-placeholder-text {
  text-align: center;
  color: #ffffff;
}

.video-placeholder-text i {
  font-size: 5rem;
  color: #d4af37;
  margin-bottom: 20px;
  opacity: 0.7;
}

.video-placeholder-text p {
  font-size: 1.3rem;
  margin: 0;
}

.video-placeholder-text small {
  font-size: 1rem;
  opacity: 0.7;
}

/* ===== Plan Your Visit Section ===== */
.plan-visit {
  padding: 80px 0;
  background: #ffffff;
}

.visit-info-box {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 35px;
  height: 100%;
  border: 2px solid #ecf0f1;
  transition: all 0.3s ease;
}

.visit-info-box:hover {
  border-color: #d4af37;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  transform: translateY(-5px);
}

.visit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.visit-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.visit-info-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.visit-info-box p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 15px;
}

.visit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.visit-list li {
  padding: 10px 0;
  color: #34495e;
  font-size: 1rem;
}

.visit-list i {
  color: #d4af37;
  margin-right: 10px;
  font-size: 1.2rem;
}

.hotel-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.hotel-list li {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 4px solid #d4af37;
}

.hotel-list strong {
  color: #2c3e50;
  display: block;
  margin-bottom: 5px;
}

.hotel-list small {
  color: #7f8c8d;
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #ecf0f1;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 80px 0;
}

.accordion-item {
  background: #ffffff;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  background: #ffffff;
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 20px 25px;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
  color: #ffffff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #d4af37;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232c3e50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #34495e;
  background: #f8f9fa;
}

/* ===== Registration CTA Section ===== */
.register-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url('../img/cta-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  position: relative;
}

.register-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

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

.register-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.register-cta p {
  font-size: 1.3rem;
  color: #ecf0f1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.social-share {
  margin-top: 50px;
}

.share-text {
  font-size: 1rem;
  color: #ecf0f1;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icons a:hover {
  background: #d4af37;
  border-color: #d4af37;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.social-icons a.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-icons a.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-icons a.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.social-icons a.email:hover {
  background: #ea4335;
  border-color: #ea4335;
}

/* ===== Footer ===== */
#settled-footer {
  background: #0f1419;
  color: #ffffff;
  padding: 40px 0 20px 0;
}

#settled-footer h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

#settled-footer p {
  color: #b0b0b0;
  margin-bottom: 0;
}

.footer-locations {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-locations p {
  margin-bottom: 8px;
  color: #e0e0e0;
}

.footer-locations strong {
  color: #d4af37;
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #d4af37;
  color: #ffffff;
  transform: translateY(-3px);
}

.copyright {
  color: #b0b0b0;
  font-size: 0.95rem;
  margin-top: 20px;
}

.settled-tag {
  color: #d4af37;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  letter-spacing: 1px;
}

/* ===== Back to Top Button ===== */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #d4af37;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #c19a2e;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-hashtag {
    font-size: 1.2rem;
  }
  
  .schedule-box.featured {
    transform: scale(1);
  }
  
  .schedule-box.featured:hover {
    transform: translateY(-10px) scale(1);
  }
  
  .register-cta h2 {
    font-size: 2.2rem;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 40px 25px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-hashtag {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .btn-cta {
    padding: 15px 35px;
    font-size: 1rem;
  }
  
  .schedule-box {
    margin-bottom: 20px;
  }
  
  .essence-text {
    font-size: 1.1rem;
  }
  
  .register-cta h2 {
    font-size: 1.8rem;
  }
  
  .register-cta p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  #settled-hero {
    padding: 100px 0 60px 0;
  }
  
  .hero-content {
    padding: 30px 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-hashtag {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  
  .btn-cta {
    padding: 12px 30px;
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
  
  .social-icons {
    gap: 15px;
  }
  
  .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-aos="fade-up"] {
  animation: fadeInUp 1s ease-out;
}

/* ===== Print Styles ===== */
@media print {
  .settled-header,
  .back-to-top,
  .social-share,
  .social-links {
    display: none !important;
  }
  
  .register-cta {
    background: #1a1a2e !important;
    page-break-inside: avoid;
  }
}

/* ===== Registration Modal Styles ===== */
#registerModal .modal-content {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#registerModal .modal-header {
  background: linear-gradient(135deg, #d4af37 0%, #c19a2e 100%);
  color: #ffffff;
  padding: 25px 30px;
  border-bottom: none;
}

#registerModal .modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

#registerModal .modal-title i {
  font-size: 1.6rem;
}

#registerModal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

#registerModal .btn-close:hover {
  opacity: 1;
}

#registerModal .modal-body {
  padding: 35px 30px;
  background: #ffffff;
}

#registerModal .modal-body > p {
  color: #5a6c7d;
  font-size: 1rem;
  line-height: 1.6;
}

#registerModal .form-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

#registerModal .form-control,
#registerModal .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#registerModal .form-control:focus,
#registerModal .form-select:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

#registerModal .form-control.is-invalid,
#registerModal .form-select.is-invalid {
  border-color: #dc3545;
}

#registerModal .form-control.is-valid,
#registerModal .form-select.is-valid {
  border-color: #28a745;
}

#registerModal .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid #d4af37;
  border-radius: 4px;
  cursor: pointer;
}

#registerModal .form-check-input:checked {
  background-color: #d4af37;
  border-color: #d4af37;
}

#registerModal .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

#registerModal .form-check-label {
  cursor: pointer;
  color: #34495e;
  font-size: 0.95rem;
  padding-left: 8px;
}

#registerModal .text-danger {
  color: #d4af37 !important;
}

#registerModal .btn-cta {
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#registerModal .btn-cta i {
  font-size: 1.2rem;
}

#registerModal .modal-footer {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 20px 30px;
  justify-content: center;
}

#registerModal .modal-footer small {
  font-size: 0.85rem;
  color: #6c757d;
  text-align: center;
}

#formMessage {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

#formMessage.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#formMessage.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#formMessage.alert-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Modal responsive adjustments */
@media (max-width: 576px) {
  #registerModal .modal-dialog {
    margin: 10px;
  }
  
  #registerModal .modal-header {
    padding: 20px;
  }
  
  #registerModal .modal-title {
    font-size: 1.4rem;
  }
  
  #registerModal .modal-body {
    padding: 25px 20px;
  }
  
  #registerModal .form-control,
  #registerModal .form-select {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}
