/* GLOBAL */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0b1623;
  color: white;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #0b1623;
  padding: 15px 60px;
  border-bottom: 1px solid gold;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  width: 50px;
}

.logo-area h2 {
  font-family: 'Playfair Display', serif;
  color: gold;
  margin: 0;
}

/* NAV */
nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: gold;
  text-decoration: none;
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 50px;
  font-family: 'Playfair Display', serif;
}

/* SECTIONS */
.section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  color: gold;
  margin-bottom: 25px;
}

.dark {
  background: #132b45;
}

/* SERVICE */
.service {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.service img {
  max-width: 300px;
  width: 100%;
  border-radius: 10px;
}

/* PROFILE IMAGE */
.profile {
  width: 200px;
  max-width: 100%;
  border-radius: 10px;
  display: block;
  margin-bottom: 20px;
}

/* REVIEW */
.review {
  background: #0b1623;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid gold;
  border-radius: 8px;
}

.stars {
  color: gold;
}

/* CONTACT */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1;
}

.contact-card {
  background: #132b45;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 3px solid gold;
  border-radius: 8px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  width: 100%;
}

.contact-form button {
  background: gold;
  border: none;
  padding: 15px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: gold;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){
  .container {
    flex-direction: column;
    gap: 15px;
  }
  
  .service {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .hero h2 {
    font-size: 35px;
  }
}

/* RIGHT SIDE TOGGLE MENU */
.menu-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background: gold;
  color: #132b45;
  padding: 12px 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  z-index: 1000;
}

.side-nav {
  position: fixed;
  top: 70px;
  right: 20px;
  display: none; /* hidden initially */
  flex-direction: column;
  gap: 15px;
  background: #132b45;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid gold;
  z-index: 1000;
}

.side-nav a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.side-nav a:hover {
  color: white;
}