/* style.css */
:root {
  /* Colors */
  --bg-900: #0b0b0b;
  --bg-800: #111;
  --surface-700: #1c1c1c;
  --muted: #888;
  --text: #f4f4f4;
  --accent: #ffd700; /* gold */
  --accent-2: #ff5500; /* orange */
  --white: #ffffff;
  --danger: #e91e63;

  /* Spacing & type */
  --gap-sm: 8px;
  --gap: 16px;
  --gap-lg: 24px;
  --container: 1200px;

  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.5rem;
  --radius: 10px;

  /* useful */
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Arial", sans-serif;
  background: var(--bg-900);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Utility container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Anchor resets */
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ================= HEADER ================= */
header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
  color: var(--white);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
  position: fixed;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 52px;
  width: auto;
  border-radius: 6px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.06);
}

header h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  text-align: center;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  gap: 1rem;
  position: relative;
  align-items: center;
}

/* Navbar Links */
.navbar .contact {
  color: var(--accent);
}
.navbar a {
  color: var(--white);
  font-weight: 600;
  font-size: var(--fs-lg);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  position: relative;
  transition: transform var(--transition), color var(--transition);
}

.navbar a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.navbar a:hover::after {
  width: 100%;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  cursor: pointer;
}

.tic {
  width: 30px;
  height: 3px;
  background-color: var(--accent);
  margin: 5px auto;
  transition: 0.5s ease-in-out;
}

/* Main Content */
.contact-section {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 40px 0;
  margin-top: 90px;
  text-align: center;
}

h1 {
  color: #ff0000;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.welcome-message {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color:black;
}

.contact-info {
  margin: 30px 0;
  color: black;
}

.phone-number {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 1.5rem;
  margin: 20px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-number:hover {
  background-color: #ff0000;
  transform: scale(1.05);
}

.social-section {
  margin: 40px 0;
}

.social-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #555;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}

.social-link.tiktok {
  background: #000;
}

.social-link.whatsapp {
  background: #075e54;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

.copyright {
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {


     /* From Navigation and Gallery */
  .hamburger {
    display: block;
    margin-right: 10px;
    z-index: 1100;
  }

  .navbar {
    flex-direction: column;
    background-color: var(--bg-900);
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 110%; /* directly below the header */
    left: -100%;
    width: 100%;
    height: 90vh;
    padding: 1rem 0;
    transition: left 0.5s ease;
    z-index: 999;
  }

  .navbar.active {
    left: 0;
  }

  /* Hamburger animation */
  .hamburger.active .tic:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .tic:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .tic:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .logo {
    font-size: 2rem;
  }

  .phone-number {
    font-size: 1.2rem;
    padding: 12px 20px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 80%;
    text-align: center;
  }
}
