/* css/style.css — mobile-first */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: center;
}

:root {
  --accent: #006d77;
  --accent-light: #83c5be;
  --bg: #fdfdfd;
  --text: #222;
  --radius: .75rem;
  --shadow: 0 6px 18px rgba(0, 0, 0, .08);
  --container: 1100px;
  font-family: "Segoe UI", Roboto, Helvetica, sans-serif;
  line-height: 1.5;
}

body {
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(90%, var(--container));
  margin: auto;
}

/* --- Header --- */
header {
  background: var(--accent);
  color: #fff;
  padding: 1rem 0;
}

header nav a {
  margin: 0 .75rem;
  color: #fff;
  font-weight: 500;
}

nav a {
  color: #444;
  text-decoration: none;
  padding: .5rem 1rem;
  transition: color .2s;
}

nav a.active {
  color: black;
  margin: 0 .25rem;
  opacity: .8;
}

nav a:hover {
  color: #666;
}

.lang-switch {
  margin-left: auto;
}

.lang-switch a {
  color: #fff;
  margin: 0 .25rem;
  opacity: .8;
}

.lang-switch a.active {
  opacity: 1;
  font-weight: 600;
}

.flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}

main {
  padding: 2rem 0;
}

.brand img {
  display: block;
  max-height: 48px;
}

.sr-only {
  position: absolute;
  left: -10000px;
}

/* --- Hero Banner --- */
.hero {
  background: url("../img/background.jpeg") center/cover no-repeat;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .5);
  padding: 6rem 1rem 7rem;
  text-align: center;
}

.hero h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: .7rem 1.2rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* --- Cards --- */
.cards {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card h3 {
  padding: 1rem;
  font-size: 1.25rem;
}

.card p {
  padding: 0 1rem 1.5rem;
  flex: 1;
}

/* --- Hotel Gallery --- */
.hotel-gallery {
  max-width: 600px;
  margin: 2rem auto;
  font-family: sans-serif;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hotel-gallery .preview {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hotel-gallery .info {
  padding: 1rem 1.5rem;
  background: #fff;
}

.hotel-gallery .info h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  color: #333;
}

.hotel-gallery .info p {
  margin: 0 0 1rem;
  color: #555;
  line-height: 1.4;
}

.hotel-gallery .info .btn {
  background: #e74c3c;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.hotel-gallery .toggle-arrow {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #888;
  transition: transform 0.3s, color 0.3s;
}

.hotel-gallery .toggle-arrow:hover {
  color: #555;
}

.hotel-gallery .thumbs {
  display: none;
  padding: 1rem 1.5rem;
  background: #fafafa;
  border-top: 1px solid #eee;
  gap: 0.75rem;
  justify-content: center;
}

.hotel-gallery .thumbs img {
  width: calc(33.333% - 0.5rem);
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.hotel-gallery .thumbs img:hover {
  transform: scale(1.05);
}

.hotel-gallery.open .thumbs {
  display: flex;
}

.hotel-gallery.open .toggle-arrow {
  transform: rotate(90deg);
  color: #333;
}

/* --- Contact Page --- */
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.phone-block {
  text-align: center;
}

.phone-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 0.3rem;
  color: #eee;
}

.phone-link {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  margin: 0 .25rem;
  transition: color .2s;
}

.phone-link:hover {
  color: var(--accent-light);
}

.social-icon {
  filter: none !important;
  width: 32px;
  height: 32px;
  margin-right: 0.5rem;
  transition: transform 0.2s;
}

.social-icon:last-child {
  margin-right: 0;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* --- About Page --- */
.about-hero {
  background: var(--accent-light);
  padding: 3rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  text-align: center;
}

.about-hero h2 {
  margin-bottom: 1rem;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0 2rem;
  justify-content: center;
}

.pillars li {
  background: #08e4bf;
  padding: .6rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* --- Footer --- */
footer {
  background: #fff;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-contact .phone-icon {
  width: 10px;
  height: 10px;
  margin-right: 0.35rem;
}

.sep {
  opacity: .5;
  user-select: none;
}

.footer-right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

/* --- Responsive Media Queries --- */
@media (min-width: 600px) {
  .contact-details {
    flex: 0 0 200px;
  }
  .contact-wrapper {
    align-items: flex-start;
  }
  header .header-inner {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .hotel-gallery summary {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hotel-gallery summary h3::after {
    right: 50%;
    transform: translate(50%, -50%);
  }
}

@media (max-width: 600px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .social-links {
    flex-direction: row;
    justify-content: center;
  }
  header nav a {
    padding: .4rem .6rem;
    font-size: .9rem;
  }
  .footer-right {
    flex-direction: column;
  }
  .footer-right .follow {
    margin-bottom: .25rem;
  }
}
