/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: white;
  min-height: 100vh;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.navbar .logo {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.8rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #00ffe7, #00c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px #00ffe7aa;
}

/* Navbar links */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar ul li a {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.navbar ul li a:hover {
  color: #00ffe7;
  background: rgba(0, 255, 231, 0.12);
  transform: translateY(-2px);
}

/* Responsive navbar */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 1rem;
    border-radius: 10px;
    display: none;
  }

  .navbar.active ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
  }
}

.menu-toggle {
  display: none;
}

/* Main content layout */
main, .content-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #00ffe7;
  margin: 0;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #00ffe7, #00c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px #00ffe7aa;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Paragraphs */
p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #ddd;
  max-width: 700px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

p:hover {
  color: #00ffe7;
  text-shadow: 0 0 12px #00ffe7aa;
}

/* Gallery styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 2rem;
  width: 100%;
  max-width: 960px;
}

.gallery-item {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 255, 231, 0.1);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 6px 20px rgba(0, 255, 231, 0.3);
}

.gallery-item img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Modal image viewer */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 40px;
  overflow: hidden;
}

.modal.active {
  display: flex;
}

.modal-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 30px #00ffe7cc;
}

.modal-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
  text-shadow: 0 0 12px #00ffe7;
}

/* Home Page Layout */
.home-wrapper {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.hero {
  text-align: center;
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #00ffe7, #00c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 1rem;
  color: #ddd;
  line-height: 1.6;
}

.hero-button {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: black;
  background-color: #00ffe7;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.3s ease;
  text-decoration: none;
}

.hero-button:hover {
  background-color: #00c0ff;
  transform: translateY(-2px);
}

.quick-links {
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin-top: 1rem;
}

.card {
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
  transition: background 0.3s, transform 0.2s;
  color: white;
  text-decoration: none;
  box-shadow: 0 0 12px #00ffe711;
}

.card:hover {
  background: rgba(0, 255, 231, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 0 18px #00ffe733;
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #00ffe7;
}

.card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

.featured-image {
  text-align: center;
}

.featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 25px #00ffe755;
}

.caption {
  font-family: 'Inter', sans-serif;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #aaa;
  font-style: italic;
}

.site-footer {
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-icons a img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 4px #00ffe7aa);
}

.footer-icons a:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px #00ffe7ff);
}

.footer-text {
  font-family: 'Inter', sans-serif;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 1rem;
}

