:root {
  --main-color: gold;
  --secondary-color: black;
  --section-padding: 60px;
  --section-background: #f6f6f6;
  --main-duration: 0.5s;
}
html {
  scroll-behavior: smooth;
  background-color: black;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;

}
body {
  font-family: 'Roboto Serif', serif;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }

}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.special-heading {
  color: #ebeced;
  font-size: 100px;
  text-align: center;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 0;
}
.special-heading + p {
  margin: -30px 0 0;
  font-size: 20px;
  text-align: center;
  color: #797979;
}
@media (max-width: 767px) {
  .special-heading {
    font-size: 60px;
  }
  .special-heading + p {
    margin-top: -20px;
  }
}
/* End Components */
/* Start Header */
.header {
  padding: 20px;
  background-color: black;
  
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  width: 60px;
}
.header .links {
  position: relative;
}
.header .links:hover .icon span:nth-child(2) {
  width: 100%;
}
.header .links .icon {
  width: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header .links .icon span {
  background-color: goldenrod;
  margin-bottom: 5px;
  height: 2px;
}
.header .links .icon span:first-child {
  width: 100%;
}
.header .links .icon span:nth-child(2) {
  width: 60%;
  transition: var(--main-duration);
}
.header .links .icon span:last-child {
  width: 100%;
}
.header .links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color:burlywood;
  position: absolute;
  right: 0;
  min-width: 200px;
  top: calc(100% + 15px);
  display: none;
  z-index: 1;
}
.header .links ul::before {
  content: "";
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent burlywood transparent;
  position: absolute;
  right: 5px;
  top: -20px;
}
.header .links:hover ul {
  display: block;
}
.header .links ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #333;
  transition: var(--main-duration);
}
.header .links ul li a:hover {
  padding-left: 25px;
}
.header .links ul li:not(:last-child) a {
  border-bottom: 1px solid gold;
}
/* === Global Styles === */
body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background-color: #0b0b0b;
  color: #e1c675; /* gold */
  line-height: 1.6;
}

h1, h2, h3 {
  color: #ffd700; /* bright gold */
  text-align: center;
  margin-bottom: 0.5em;
}

 button {
  color: white;
background-color: #000;
  border: none;
  padding: 0.6em 1.2em;
  text-decoration: none;
  font-weight: bold;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

 button:hover {
  background-color: #e1c675;
  color: #000;
}

/* === Header Section === */
.landing{
  background: url('./images/pexels-pixabay-262786.jpg') no-repeat center center/cover;

  padding: 100px 20px;
  text-align: center;
  height: 400px;
}

.landing h1 {
  font-size: 2rem;
  text-shadow: 2px 2px 10px #000;
  width: 360px;
  margin-left: 120px;
}

.landing button {
  margin-top: 20px;
  float: left;
  margin-left: 200px;
}

/* === Section Layouts === */
section {
  padding: 60px 20px;
}

.destinations,
.gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  text-align: center;

}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  margin-top: 10px;
}

.activities {
  text-align: center;
  font-size: 1.1em;
}

.gallery-section {
  padding: 40px 20px;
  background-color: #0b0b0b;
  color: #ffd700;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 3px solid #333;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  border-color: gold;
}

/* === Map === */
.map-container {
  text-align: center;
  margin-top: 40px;
}

.map-container iframe {
  width: 90%;
  height: 400px;
  border: none;
  border-radius: 10px;
}

/* === Footer === */
footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 0.9em;
}
h2{
    display: block;
    margin: 10px;

}
.btn1,.btn2,.btn3,.btn4{
  background-color: gold;
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  margin-left: 10px;
  cursor: pointer;
  transition: 0.3s;
  
}

.btn1:hover,.btn2:hover,.btn3:hover,.btn4:hover,.btnscroll:hover {
  background-color: black;
  color: gold;
  border: 1px solid gold;
}
.btn{
    display: flex;
    justify-content: center;
}
.btnscroll{
    width: 40px;
    height: 40px;
    border: none;
    background-color: gold;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right:  20px;
    display: none;
}
.contact-section {
  background-color: #1a1a1a;
  padding: 60px 20px;
  color: gold;
}

.contact-section h2 {
  color: #ffd700;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #555;
  border-radius: 8px;
  background-color: #0b0b0b;
  color: gold;
  font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: gold;
}

.contact-form button {
  background-color: gold;
  color: black;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: black;
  color: gold;
  border: 1px solid gold;
}
.map-container {
  text-align: center;
  margin-top: 40px;
  padding: 60px 20px;
  background-color: #0b0b0b;
}

.map-container h2 {
  color: var(--main-color);
  margin-bottom: 20px;
  font-size: 28px;
}
.map-buttons button {
  margin: 10px;
  background-color: var(--main-color);
  color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

.map-buttons button:hover {
  background-color: #e1c675;
  color: black;
}
.seasons-box {
  background-color: #1a1a1a;
  color: #e1c675; 
  border-left: 5px solid gold;
  padding: 20px;
  margin: 40px auto;
  max-width: 600px;
  border-radius: 12px;
  font-size: 1.1rem;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  line-height: 1.8;
}
.tips-box {
  background-color: #1a1a1a;
  color: #e1c675; /* ذهبى متناسق مع تصميمك */
  border-left: 5px solid gold;
  padding: 20px;
  margin: 40px auto;
  max-width: 600px;
  border-radius: 12px;
  font-size: 1.1rem;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  line-height: 1.8;
}
.museums-section {
  padding: 60px 20px;
  background-color: #1a1a1a;
  color: #ffd700;
  text-align: center;
}

.museums-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.museum-card {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 10px;
  width: 280px;
  padding: 20px;
  transition: transform 0.3s ease;
}

.museum-card:hover {
  transform: scale(1.05);
  border-color: gold;
}

.museum-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.museum-card h3 {
  color: #e1c675;
  margin-bottom: 10px;
}

.museum-card p {
  color: #ccc;
  font-size: 0.95em;
}
.restaurants-section {
  padding: 60px 20px;
  background-color: #111;
  color: #ffd700;
  text-align: center;
}

.restaurant-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.restaurant-card {
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 10px;
  width: 280px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px #000;
  transition: transform 0.3s ease;
}

.restaurant-card:hover {
  transform: scale(1.05);
}

.restaurant-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.destinations,
.museums-grid,
.restaurant-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.card,
.museum-card,
.restaurant-card {
  flex: 1 1 280px;
  max-width: 300px;
  min-width: 240px;
}
html {
  scroll-behavior: smooth;
}








