/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: font-name-1, font-name-2, generic-family;
  background: #0d0d0d;
  color: #fff;
  min-height: 100vh;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.logo span {
  color: #d0d0d0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  border-radius: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #d9d9d9;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #000000;
  transition: width 0.3s;
  border-radius: 20px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Active menu animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Layout */
.ig-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1000px;
  background: #111;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  margin: 2rem auto;
  padding: 2rem 0;
}

/* Left Section */
.ig-info {
  flex: 1;
  padding: 3rem;
}

.ig-info h1 {
  font-size: 2.8rem;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.ig-info p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 400px;
}

/* Buttons */
.ig-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ig-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* Right Section */
.ig-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.ig-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 25px 25px 0;
}

/* Google Maps */
.map-container {
  width: 90%;
  max-width: 1000px;
  height: 400px;
  margin: 2rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 800px) {
  .ig-page {
    flex-direction: column;
  }

  .ig-info, .ig-image {
    width: 100%;
  }

  .ig-info {
    text-align: center;
    padding: 2rem;
  }

  .ig-image img {
    display: none;
  }
}

/* Mobile Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    width: 220px;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    transition: height 0.4s ease;
  }

  .nav-links.active {
    height: 180px;
    padding: 20px 0;
    border-radius: 20px;
    border: 1px solid rgb(255, 255, 255);
  }
}
