/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}
body {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background: rgba(0,0,0,0.6);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
    max-height: 60px;
    width: auto;
  
}
.main-nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #00e6e6;
}

/* Hero */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
}
.cta {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #00e6e6;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s;
}
.cta:hover {
  background: #fff;
  color: #000;
}

/* Sections */
section {
  padding: 60px 0;
}
h2 {
  margin-bottom: 20px;
  color: #00e6e6;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
}

/* Footer */
.footer {
  background: rgba(0,0,0,0.7);
  text-align: center;
  padding: 20px;
}
.footer .socials a {
  margin: 0 10px;
  color: #00e6e6;
  text-decoration: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: 0.3s;
}
.whatsapp-float:hover {
  background: #20ba57;
}
