
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f8f8;
  color: #111;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background-color: #000000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 100px;
  margin-left: 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #FFD700;
}

section {
  padding: 60px 20px;
  text-align: center;
}

h1, h2 {
  color: #111;
  margin-bottom: 20px;
}

.btn {
  background-color: #FFD700;
  color: #111;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #111;
  color: #FFD700;
}

.card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  margin: 20px;
  padding: 20px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

img {
  max-width: 100%;
  height: auto;
}



.hero {
  background-image: url('bg-dubai.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 120px 20px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}



.parallax {
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 120px 20px;
}

.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.parallax-content {
  position: relative;
  z-index: 1;
}



.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.contact-form button {
  width: 100%;
}



.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.admin-grid .card form input,
.admin-grid .card form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}

.admin-grid .card form button {
  width: 100%;
}



nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

nav a {
  background-color: transparent;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
  font-weight: 500;
}

nav a:hover {
  background-color: #FFD700;
  color: #111;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}



.header-title {
  color: #FFD700;
  font-size: 48px;
  font-weight: 700;
  margin-left: 20px;
}
