@font-face {
  font-family: "DreamingOutLoud";
  src: url("fonts/dreaming-outloud-regular.otf") format("opentype");
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #ecf0f1;
}

body {
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

.contact-info {
  position: absolute;
  top: 12px;
  right: 15px;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.contact-item {
  font-family: "DreamingOutLoud", sans-serif;
  font-size: 24px;
  margin: 0;
  line-height: 1.2;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #34495e;
  text-decoration: none;
  position: relative;
}

.contact-item.phone {
  padding-left: 14px;
  padding-right: 18px;
}

.contact-item.phone::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 1px;
  height: calc(100% + 5px);
  background: #bdc3c7;
}

.contact-item.phone::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  width: 1px;
  height: calc(100% + 5px);
  background: #bdc3c7;
}

.contact-inner {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-inner {
  transform: scale(1.03);
}

.contact-item .emoji {
  margin-right: 5px;
}

.contact-item .text {
  position: relative;
  transition: color 0.3s ease;
}

.contact-item:hover .text {
  color: #34495e;
}

.contact-item .text::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: #34495e;
  transition: width 0.3s ease;
}

.contact-item:hover .text::after {
  width: 100%;
}

.landing {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.header {
  width: 100%;
  position: relative;
  z-index: 2;
}

.header img {
  display: block;
  width: 100%;
  height: auto;
}

.slideshow {
  flex: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -110px;
}

.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

.widget-container {
  width: 100%;
}

.widget-container .weatherwidget-io {
  display: block;
  width: 100%;
}

.square-images-container {
  margin: 60px 0;
}

.image-row {
  display: flex;
  justify-content: space-evenly;
  padding: 0;
}

.image-item {
  position: relative;
  width: 350px;
  margin: 0;
  cursor: pointer;
}

.image-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

.dropdown-menu {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 100;
  font-family: "DreamingOutLoud", sans-serif;
  max-width: 800px;
  width: 90%;
  text-align: left;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -55%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.dropdown-menu.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.dropdown-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 34px;
  text-align: center;
  color: #34495e;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}
.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-header {
  font-size: 24px;
  margin-bottom: 10px;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.toggle-icon {
  margin-right: 8px;
  font-weight: bold;
  font-size: 24px;
}

.dropdown-content {
  display: none;
  padding-top: 10px;
}
.dropdown-content.active {
  display: block;
}

.dropdown-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-description {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
}

.dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: none;
  z-index: 90;
}

.dropdown-overlay.active {
  display: block;
}

.coming-soon-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.coming-soon-modal.active {
  display: flex;
}

.coming-soon-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  font-family: "DreamingOutLoud", sans-serif;
}

.footer {
  width: 100%;
  margin-top: 20px;
}
.footer img {
  width: 100%;
  display: block;
}

/* ---------- Giveaway Button ---------- */
.giveaway-button {
  position: fixed;
  top: 60px;
  right: 15px;
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 24px;
  font-family: "DreamingOutLoud", sans-serif;
  font-size: 20px;
  cursor: pointer;
  z-index: 110;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.giveaway-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.2);
}

/* ---------- Giveaway Modal Popup ---------- */
.giveaway-modal {
  display: none;
  position: fixed;
  z-index: 120;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
}
.giveaway-modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  font-family: "DreamingOutLoud", sans-serif;
  color: #34495e;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  line-height: 1.6;
  text-align: left;
}
.giveaway-modal-content h2,
.giveaway-modal-content h3,
.giveaway-modal-content h4 {
  text-align: center;
  margin-top: 0;
}
.giveaway-modal-content p {
  margin: 15px 0;
  font-size: 18px;
}
.giveaway-modal-content a {
  color: #d35400;
  text-decoration: underline;
}
.event-dates {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}
.terms {
  font-size: 16px;
  color: #555;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 28px;
  font-weight: bold;
  color: #34495e;
  cursor: pointer;
}
.modal-close:hover {
  color: #2c3e50;
}

/* ─── Internet Issues Modal ───── */
.internet-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 300;
}

.internet-modal-content {
  background: #fff;
  border: 4px solid #d35400;
  border-radius: 16px;
  max-width: 700px;
  width: 90%;
  padding: 40px 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  font-family: "DreamingOutLoud", sans-serif;
}

.internet-header {
  background: #d35400;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border-radius: 12px 12px 0 0;
  margin: -40px -24px 24px -24px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 32px;
  color: #34495e;
  cursor: pointer;
  transition: color 0.2s ease;
}
.modal-close:hover {
  color: #c0392b;
}

.internet-title {
  font-size: 28px;
  color: #c0392b;
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.2;
}

.internet-text {
  font-size: 20px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}

.internet-text a {
  color: #d35400;
  text-decoration: underline;
}
