/* Reset & body */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* HEADER */
header {
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

header h1 {
    margin: 0;
}

header nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}

header nav a:hover {
    text-decoration: underline;
}

/* HERO SECTION */
.hero {
    background: url('{% static "hero.jpg" %}') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #219150;
}

/* INTRO SECTION */
.intro {
    padding: 3rem 10%;
    text-align: center;
}

.intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* FOOTER */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
}
/* HERO Section */
.hero {
  background: url('https://source.unsplash.com/1600x900/?cafe,coffee') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* parallax */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-text {
  background: rgba(0, 0, 0, 0.4); /* overlay */
  padding: 2rem;
  border-radius: 10px;
}

/* Common Parallax Section Styles */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.parallax .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem;
  border-radius: 12px;
  max-width: 700px;
}

/* Individual Backgrounds */
.section-sandwich {
  background-image: url('https://source.unsplash.com/1600x900/?sandwich');
}

.section-burger {
  background-image: url('https://source.unsplash.com/1600x900/?burger');
}

.section-beverage {
  background-image: url("{% static 'images/coffee.jpg' %}");

/* Optional: smooth scrolling */
html {
  scroll-behavior: smooth;
}
