:root {
  --main-bg: #fff8f0;
  --accent: #ff6f3c;
  --accent-light: #ffa07a;
  --text: #1f1f1f;
  --link: #0077b6;
  --link-hover: #023e8a;
  --header-bg: #ffb703;
  --header-text: #1f1f1f;
  --footer-bg: #fb8500;
  --footer-text: #ffffff;
  --card-bg: #ffffff;
  --border-radius: 10px;
  --box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  background: var(--main-bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #ffb703;
  color: black;
  font-weight: bold;
  z-index: 1000;
  text-decoration: none;
  border-radius: var(--border-radius);
}

/* Accessibility */
.accessibility-mode {
  background-color: #000 !important; 
  color: #000000 !important; 
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1em; 
}

.accessibility-mode a {
  color: #ffdd00 !important; 
  text-decoration: underline;
  font-weight: bold;
}

.accessibility-mode a:hover,
.accessibility-mode a:focus {
  color: #fff !important; 
  background-color: #ffbb00 !important; 
}

.accessibility-mode header,
.accessibility-mode footer,
.accessibility-mode nav {
  background-color: #111 !important; 
  color: #fff !important;
}

.accessibility-toggle {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ffcc00; 
  color: #000;
  border: 2px solid #000;
  padding: 0.7rem 1.3rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  z-index: 1000;
  font-weight: bold;
  font-size: 1.2rem;
  transition: background 0.3s, color 0.3s;
}

.accessibility-toggle:hover,
.accessibility-toggle:focus {
  background-color: #ffdd00; 
  color: #000;
}

/* Header Styles */

header {
  background: #ffb703;
  color: var(--header-text);
  padding: 1.5rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}

/* Navigation */
nav {
  width: 100%;
  margin-top: 1rem;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 5rem;
}

nav a {
  color: var(--header-text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s;
}

nav a:hover,
nav a:focus {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

nav a.active,
nav a[aria-current="page"] {
  background-color: var(--accent);
  color: white;
}

/* Main Content */
main {
  padding: 2rem 0;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), 
              url('../images/hero-bg.jpg') center/cover no-repeat;
  padding: 3rem 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.hero .text-box {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text);
  font-size: 1.1rem;
}

.hero ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero li {
  margin-bottom: 0.5rem;
}

.hero em {
  display: block;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 1.5rem 0;
  font-weight: 600;
}

/* Video*/
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section {
  margin-top: 2rem; 
}

.video-caption-box {
  margin-top: 1rem;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  font-weight: 500;
  color: var(--text);
}

.video-caption-box a {
  font-weight: bold;
  color: var(--link);
  text-decoration: underline;
}

.video-caption-box a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.video-description {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  color: var(--text);
  font-size: 1rem;
  font-weight: normal;
}

.video-description summary {
  font-weight: bold;
  text-align: center;
  color: var(--accent);
  cursor: pointer;
}

.video-description summary:hover {
  color: var(--link-hover);
}

.video-description p {
  text-align: left;
  margin-bottom: 1rem;
}

.video-description strong {
  font-weight: 600;
}

.video-description a {
  font-weight: bold;
  color: var(--link);
  text-decoration: underline;
}

.video-description a:hover {
  color: var(--link-hover);
}


/* Destinations Grid */
.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.destination-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.destination-card h2 {
  color: var(--accent);
  font-size: 1.4rem;
  padding: 1rem;
  border-bottom: 2px solid var(--accent-light);
}

.destination-card .content {
  padding: 1rem;
}

.destination-card p {
  margin-bottom: 1rem;
}

.thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.thumbnail:hover {
  opacity: 0.9;
}

/* Aside */
aside {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
  margin-top: 2rem;
}

aside h3 {
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-light);
}

aside ul {
  margin-left: 1.5rem;
}

aside li {
  margin-bottom: 0.5rem;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: var(--accent-light);
  color: var(--text);
  font-weight: 600;
}

tr:hover {
  background-color: rgba(255, 179, 71, 0.1);
}

/* Forms */
form {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--accent);
  outline: none;
}

button[type="submit"] {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background 0.3s;
}

button[type="submit"]:hover {
  background: var(--link-hover);
}

fieldset {
  border: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

/* Links */
a {
  color: var(--link);
  text-decoration: underline;
  transition: color 0.3s;
}

a:hover,
a:focus {
  color: var(--link-hover);
  text-decoration: underline;
}

figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}


.highlight-text {
  color: #fb7c2c; 
}


/* Media */
@media (max-width: 768px) {
  .destinations {
    grid-template-columns: 1fr;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  nav a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 2rem 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .destinations {
    grid-template-columns: repeat(2, 1fr);
  }
}
