/* ---------------------- */
/* FONTS */
@font-face {
  font-family: 'Coolvetica';
  src: url('fonts/coolvetica.otf') format('truetype');
}

@font-face {
  font-family: 'Caviar';
  src: url('fonts/CaviarDreams.ttf') format('truetype');
}

@font-face {
  font-family: 'Quicksand';
  src: url('fonts/quicksand_book.otf') format('truetype');
}

/* ---------------------- */
/* RESET DEFAULT MARGINS */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ---------------------- */
/* HERO HEADER */
.hero-header {
  background-image: url('images/header.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  min-height: 200px;     
  width: 100vw;
  box-sizing: border-box;
}

.hero-overlay {
  width: 100%;
  display: flex;
  position: relative;
}

.hero-image {
  width: 250px;
  height: auto;
  margin: 0;
}

.hero-address {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  text-align: right;
  font-family: 'Caviar', sans-serif;
  font-size: 0.9rem;
}

.hero-content {
  position: absolute;
  bottom: 20px;       
  right: 20px;
  max-width: 500px;    
  text-align: right;
}

.hero-content h1 {
  margin: 0 0 10px;
  letter-spacing: 3px;
  font-size: 2.2rem;
  font-family: 'Coolvetica', sans-serif;
  line-height: 1.1;    
}

.hero-content p {
  margin: 0;
  font-size: 1.2rem;
  font-family: 'Coolvetica', sans-serif;
  letter-spacing: 1px;
}

/* ---------------------- */
/* NAVBAR */
.navbar {
  background-color: #cc272f;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  border: 1px solid black;
}

.nav-links {
  list-style: none;
  display: flex;
  max-width: ;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links li:not(:last-child)::after {
  content: "|";
  color: white;
  margin-left: 15px;
}

.nav-links a {
  background-color: white;
  font-size: 18px;
  font-family: 'Coolvetica', sans-serif;
  letter-spacing: 1px;
  color: black;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-cta {
  background-color: #eeb868;
  font-family: 'Coolvetica', sans-serif;
  letter-spacing: 1px;
  font-size: 20px;
  color: black;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

.nav-cta:hover {
  background-color: #176360;
  transform: translateY(-2px);
  color: white;
}

.nav-links a:hover {
  background-color: #176360;
  transform: translateY(-2px);
  color: white;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.nav-toggle {
  display: none;
}

/* ---------------------- */
/* FOOTER */
.site-footer {
  background-color: #109a94;
  color: white;
  padding: 20px 20px;
  font-family: sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  align-items: start;
}

/* Logo column */
.footer-logo-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.footer-bottom-logo {
  width: 160px;
  height: auto;
}

/* Quick Links column */
.footer-left {
  display: flex;
  flex-direction: column;
}

/* About Us column */
.footer-center-left {
  display: flex;
  flex-direction: column;
  justify-self: center;
}

/* Contact column */
.footer-center-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Address column flush right */
.footer-right {
  display: flex;
  flex-direction: column;
  justify-self: end;
}

/* Column content styling */
.footer-column h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
}

.footer-column p,
.footer-column ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.footer-column ul li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #eeb868;
}

/* Social buttons */
.social-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.social-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------------------- */
/* RESPONSIVE FOOTER: STACK COLUMNS ON MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 20px;
  }

  .footer-logo-col,
  .footer-left,
  .footer-center-left,
  .footer-center-right,
  .footer-right {
    justify-self: center;
  }

  .social-buttons {
    justify-content: center;
  }
}

/* DESKTOP HEADER (1755px+) */
@media (min-width: 1755px) {
  .hero-header {
    min-height: 400px;     
  }
  .hero-image {
    width: 350px;
  }
  .hero-content {
    max-width: 600px;        
    bottom: 40px;
    right: 40px;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content p {
    font-size: 1.5rem;
  }
}

/* TABLET HEADER (705px - 1754px) */
@media (min-width: 705px) and (max-width: 1754px) {
  .hero-header {
    min-height: 300px;      
    position: relative;
  }
  .hero-image {
    width: 250px;
  }
  .hero-content {
    position: absolute;      
    bottom: 20px;
    right: 20px;
    max-width: 500px;       
    text-align: right;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .nav-links a {
  font-size: 15px;
}
  .hero-content p {
    font-size: 1rem;
  }
  .hero-address {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 704px) {
  .hero-content,
  .hero-address {
    display: none;
  }

  .hero-overlay {
    justify-content: center;
    align-items: center;
  }
  .nav-links a {
  font-size: 8px;
}
  .hero-image {
    width: 200px;
  }
  .hero-header {
    min-height: 150px;
    filter: brightness(1.5);
  }
}

/* ---------------------- */
/* NAVBAR BREAKPOINTS */

@media (min-width: 1076px) {
  .nav-links {
    display: flex;
  }
  
  .hamburger {
    display: none;
  }
  .nav-cta {
    display: inline-block;
  }
}

@media (max-width: 1075px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }
  
  .hamburger {
    display: block;
  }
  .nav-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-block;
    margin-top: 0;
  }
  .nav-links li:not(:last-child)::after {
    content: "";
  }
  .nav-links li {
    margin: 10px 0;
  }
}

.about-short {
  display: none;
}
.about-full {
  display: inline;
}

@media (min-width: 768px) and (max-width: 1500px) {
  .about-short {
    display: inline;
  }
  
  .about-full {
    display: none;
  }
}



/* ---------------------- */
/* MAIN CONTENT */
.main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 20px;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
  flex-wrap: wrap; 
}

.content-left {
  flex: 1;
  min-width: 280px;
}

.content-left section {
  margin-bottom: 30px;
}

.content-left h2 {
  font-family: 'Coolvetica', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #176360;
}

.content-left h4 {
  font-family: 'Coolvetica', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 2px;
  color: black;
}

.content-left p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
}

.content-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 20px;
  }

  .content-left,
  .content-right {
    width: 100%;
    text-align: center;
  }

  .content-left h2 {
    font-size: 1.5rem;
  }

  .content-left p {
    font-size: 0.95rem;
  }
}

.ets-offers {
  list-style: none; 
  padding-left: 0;
}

.ets-offers li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
}

.ets-offers li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%; 
  transform: translateY(-50%);
  width: 40px; 
  height: 40px; 
  background-image: url('images/check.png');
  background-size: contain;
  background-repeat: no-repeat;
}


/* ---------------------- */
/* THREE-COLUMN SECTION */
.three-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.three-column {
  flex: 1;
  min-width: 250px;
  background-color: #f5f5f5;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.three-column h3 {
  font-family: 'Coolvetica', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #176360;
}

.three-column p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  color: #333;
}

.three-btn {
  background-color: #cc272f;
  color: white;
  border: none;
  padding: 10px 20px;
  font-family: 'Coolvetica', sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.three-btn:hover {
  background-color: #176360;
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 768px) {
  .three-columns {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto;
  }
}


.main-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Coolvetica', sans-serif;
}

.calendar-title {
  text-align: center;
  font-size: 2rem;
  color: #176360;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.calendar-container {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.registrations-box {
  background: #f3f3f3;
  padding: 30px;
  margin: 40px auto;
  width: 90%;
  max-width: 900px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.registrations-box h2 {
  font-family: 'Coolvetica', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-align: center;
  color: #176360;
}

.registrations-box p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
}

.registration-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
  text-align: center;
}

.registration-item h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

.reg-btn {
  margin-top: 15px;
  padding: 10px 18px;
  background: #109a94;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  transition: 0.25s ease;
}

.reg-btn:hover {
  background: #176360;
}

.three-main-sections {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.main-section-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; 
}

.source-links {
  font-family: 'Quicksand', sans-serif;
  background-color: #cc272f;
  font-size: 15px;
  color: white;
  padding: 8px 3px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

.section-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-text h2 {
  font-family: 'Coolvetica', sans-serif;
  font-size: 1.8rem;
  color: #176360;
  margin-bottom: 5px;
}

.section-text h4 {
  font-family: 'Coolvetica', sans-serif;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.section-text p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.section-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center; 
}

.section-btn {
  padding: 10px 20px;
  font-family: 'Coolvetica', sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  background-color: #cc272f;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.section-btn:hover {
  background-color: #176360;
  transform: translateY(-2px);
}
  

@media (max-width: 768px) {
  .section-columns {
    flex-direction: column;
    align-items: center;
  }

  .section-text {
    text-align: center;
    align-items: center;
  }
}


.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}


.flip-card {
  perspective: 1000px;
  display: block;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 350px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}


.flip-checkbox {
  display: none;
}

.flip-checkbox:checked + .flip-card-inner {
  transform: rotateY(180deg);
}


.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

.flip-card-front {
  background-size: cover;
  background-position: center;
  font-family: 'Coolvetica', sans-serif;
  letter-spacing: 2px;
  color: #99FFF9;
  font-size: 2rem;
}

.flip-card-front h2 {
  background: rgba(0,0,0,0.4);
  padding: 10px 15px;
  border-radius: 8px;
}

.flip-card-back {
  background-color: #176360;
  color: white;
  transform: rotateY(180deg);
  flex-direction: column;
  justify-content: center;
}

.flip-card-back h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.flip-card-back p {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  margin-bottom: 15px;
}

.card-btn {
  background-color: #cc272f;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Coolvetica', sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
  transition: 0.3s;
}

.card-btn:hover {
  background-color: #109a94;
  transform: translateY(-2px);
}

/* Main sections stacked */
.three-main-sections {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px; 
}

.main-section-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.section-text h2 {
  font-size: 1.8rem;
  color: #176360;
  margin-bottom: 5px;
  font-family: 'Coolvetica', sans-serif;
  letter-spacing: 2px;
}

.section-text h4 {
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #333;
}

.section-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.section-text details {
  cursor: pointer;
  margin-top: 10px;
  font-family: 'Quicksand', sans-serif;
}

.section-text summary {
  font-weight: bold;
  color: #cc272f;
  list-style: none;
}

.section-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-columns {
    flex-direction: column;
    align-items: center;
  }

  .section-text {
    text-align: center;
    align-items: center;
  }
}

