:root {
  --bg-color: #0d0d12;
  --text-color: #e0e0e0;
  --primary-color: #6c5ce7;
  --secondary-color: #a29bfe;
  --accent-color: #fd79a8;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: "Inter", sans-serif;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-speed);
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #b2bec3;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 18, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  width: 50%;
  z-index: 2;
}

.hero-image {
  width: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 50%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.05);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(108, 92, 231, 0.5);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  transition: var(--transition-speed);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition-speed);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition-speed);
    font-weight: 600;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Footer */
footer {
  background: #050508;
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid var(--glass-border);
}

.footer-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.copyright {
  font-size: 0.9rem;
  color: #636e72;
}

/* Privacy Page Specifics */
.policy-content {
  background: var(--glass-bg);
  padding: 40px;
  border-radius: 20px;
  margin-top: 100px; /* Space for fixed header */
  margin-bottom: 50px;
}

.policy-content h2 {
  text-align: left;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.policy-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #b2bec3;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding-top: 100px;
    height: auto;
    text-align: center;
  }
  .hero-content,
  .hero-image {
    width: 100%;
    margin-bottom: 40px;
  }
  h1 {
    font-size: 2.5rem;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}
