:root{
  --accent: #f9d423;
  --accent2: #ff4e50;
  --text-light: #f0f0f0;
  --container: 1100px;
}

/* Base */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: linear-gradient(180deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

/* Container */
.container {
  max-width: var(--container);
  margin: auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  margin: 0;
  color: var(--accent2);
  font-weight: bold;
  font-size: 1.5rem;
}
.nav {
  display: flex;
  gap: 18px;
}
.nav a {
  color: #ddd;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.nav a:hover {
  color: var(--accent);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
}
.hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}
.hero-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(0,0,0,0.55);
  padding: 20px 25px;
  border-radius: 12px;
  max-width: 60%;
}
.hero-text h2 {
  margin: 0 0 8px;
  color: var(--accent);
}

/* Sections */
.section {
  margin: 40px 0;
  padding: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.section h3 {
  color: var(--accent);
  margin-top: 0;
}
.section p, .section li {
  color: #f5f5f5;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  background: rgba(0,0,0,0.5);
  text-align: center;
  padding: 20px 0;
  color: #bbb;
  font-size: 0.9rem;
}

/* Responsive */
@media(max-width:800px){
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 20px;
    top: 60px;
    background: rgba(0,0,0,0.9);
    padding: 10px 20px;
    border-radius: 8px;
  }
  .menu-toggle {
    display: block;
  }
  .hero img {
    height: 260px;
  }
  .hero-text {
    position: static;
    margin: 10px;
    max-width: 100%;
  }
  .section {
    padding: 25px;
  }
}

/* === Feedback Form === */
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.feedback-form label {
  font-weight: 600;
  color: var(--accent);
}

.feedback-form input,
.feedback-form textarea {
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
  transition: background 0.3s;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  background: rgba(255,255,255,0.2);
}

.feedback-form button {
  align-self: flex-start;
  background: var(--accent2);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.feedback-form button:hover {
  background: var(--accent);
  color: #222;
}

