/* 
  Identity: Grillontheway
  Theme: Dark Luxury & Premium
  Colors: Black Carbon (#121212, #1E1E1E), Accent Red (#D32F2F)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-bg-main: #121212;
  --color-bg-secondary: #0a0a0a;
  --color-bg-card: #1E1E1E;
  --color-text-main: #F4F4F4;
  --color-text-muted: #B0B0B0;
  --color-accent: #D32F2F;
  /* Luxurious Red */
  --color-accent-hover: #b71c1c;
  --color-border: #333333;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --section-padding: 5rem 1rem;
  --container-max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  border-radius: 8px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Components --- */

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.3s, box-shadow 0.3s;
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #1ebc57;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.section-title p {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Header --- */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #e0e0e0;
}

.nav-links li a:hover {
  color: var(--color-accent);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */

#hero {
  height: 100vh;
  min-height: 600px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('../foto1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
  /* Offset for header */
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  color: #e0e0e0;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* --- Why Us Section --- */

#why-us {
  padding: var(--section-padding);
  background-color: var(--color-bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--color-bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #fff;
}

/* --- Testimonials Section --- */

#reviews {
  padding: var(--section-padding);
  background-color: var(--color-bg-main);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background-color: var(--color-bg-card);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

.stars {
  color: #FFD700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #d1d1d1;
}

.reviewer-name {
  font-weight: 600;
  color: #fff;
}

/* --- Contact Section --- */

#contact {
  padding: var(--section-padding);
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../foto2.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.contact-content {
  background-color: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.contact-content p {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* --- Footer --- */

footer {
  padding: 3rem 1rem;
  background-color: #000;
  border-top: 1px solid #222;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-links a {
  color: #aaa;
  font-size: 1.2rem;
}

.social-links a:hover {
  color: var(--color-accent);
}

.copyright {
  color: #666;
  font-size: 0.85rem;
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Add JS toggle later if needed, for MVP maybe stack? */
    /* Simple CSS only mobile menu for now could be tricky without target/JS, 
       will assume JS will follow or we keep it simple */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-card);
    flex-direction: column;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

/* --- Floating WhatsApp Button --- */

.floating-wa-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-wa-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-wa-btn svg {
  width: 35px;
  height: 35px;
}