/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  background-color: #FB0538; /*  Background behind container */
  color: #333;
  min-height: 100vh;
	overflow-x: hidden;
}

.page-title {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;           /* Bigger than section title */
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;               /* Adjust if your background isn't black */
  text-transform: uppercase;
  letter-spacing: 2px;
}


.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Layout Container */
.container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #000000; /* Content container background */
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Navigation */
header {
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
	height: 180px;
  padding: 1rem 2rem;
  margin: auto;
	background-color: black;
}


.brand {
  display: flex;
  align-items: center;
  gap: 1rem; /* space between logo and text */
}

.brand img {
  height: 180px;
}

.brand-text {
  font-size: 3rem;
  text-align: left;
  line-height: 1.2;
}
.brand-name {
  font-family: 'Pacifico', cursive;
  font-size: 3.50rem;
  color: #fff;
  line-height: 1;
}

.brand-name,
.tagline {
	display: block;
}

.tagline {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.2rem;
	padding-top: 2rem;
}

.tagline-red {
	color: #FB0538;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
	font-family: 'Anton', sans-serif;
	font-size: 2rem;
  text-decoration: none;
  color: #fff;
  font-weight: 100;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FB0538;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Always hide toggle button on desktop */
.toggle-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  cursor: pointer;
  margin-left: auto;
}

.toggle-button .bar {
  height: 5px;
  width: 35px;
  background-color: white;
  margin: 5px 0;
  border-radius: 2px;
}



/* Hero Section */

.hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 85vh;
  padding: 4rem 2rem;
  background-image: url('img/soda-shark-hero.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.hero-content {
  display: block; /* only block layout on desktop */
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 800px;
  padding: 2rem;
}



.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}


.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #FB0538;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero .btn {
  align-self: center;      /* centers it horizontally */
  margin-top: auto;        /* pushes it to the bottom of .hero-content */
  margin-bottom: 2rem;     /* space from bottom of hero section */
}


.btn {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  background-color: #FB0538;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease-in-out;
  box-shadow: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: #c9002d;
}



/* Content text   */

section {
  padding: 5rem 0; /* top and bottom padding */
}


.section-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  margin: 2rem 0 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.section-text {
  font-size: 1.125rem;       /* Slightly larger than default for readability */
  line-height: 1.6;          /* Comfortable spacing between lines */
  max-width: 800px;          /* Keeps text blocks from getting too wide */
  margin: 0 auto 2rem;       /* Centered with spacing below */
  padding: 0 1rem;           /* Padding for mobile breathing room */
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;              /* white for better readability */
  text-align: center;        /* Optional: remove if you prefer left-aligned text */
	margin-bottom: 3rem;
}

.section-text ul {
  list-style-type: none; /* removes default bullets */
  padding: 0;
  margin: 0;
}

.section-text li {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  position: relative;
}

.section-text li::before {
  content: ""; /* or any emoji/icon */
  position: absolute;
  left: 0;
  color: #FB0538; /* brand accent */
}



.section-subheading {
  font-size: 1.5rem;
  text-align: center;
  color: #FB0538;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
}




/* Feature section */

.feature-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}




/* ===============================
   Reusable Card Component
   =============================== */
.card {
  background-color: #000000;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  color: #FB0538;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.5;
}

/* Optional layout classes for different sections */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}


/* Contact Form Styles */
form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #111;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 0, 55, 0.3);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #FB0538;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #222;
  color: #fff;
  transition: border 0.3s, background 0.3s;
}

form input:focus,
form textarea:focus {
  outline: none;
  border: 2px solid #FB0538;
  background-color: #1c1c1c;
}

form button {
  display: inline-block;
  background-color: #FB0538;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #e00430;
}






/* Footer */
footer {
  text-align: center;
  padding: 1.5rem 0;
  background-color: #000000;
  font-size: 0.9rem;
  color: #FFFFFF;
  margin-top: auto;
}

/* Menu Page */
.menu-section {
  padding: 2rem;
  text-align: center;
}



.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  width: 100%; /*  make it fill container */
  margin: 0 auto;
  padding: 1rem; /*  breathing room on smaller screens */
}

.menu-card {
  width: 100%;
}

.contact-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
}






/* Responsive */
@media (max-width: 768px) {
	
	.brand-text {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1rem;
    padding-top: 0.5rem;
  }

	section {
    padding: 3rem 1rem;
  }
	
	.navbar {
    flex-direction: row;
    align-items: center;
    height: auto;
    padding: 1rem;
  }

  .toggle-button {
    display: flex;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #000;
    padding: 1rem 2rem;
  }

  .navbar-links.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .brand img {
    height: 100px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }
	
	
 .hero {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    min-height: 85vh;
    padding: 0;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    padding: 2rem;
    z-index: 2;
  }

  .hero .btn {
    align-self: center;
    margin-top: auto;
    margin-bottom: 2rem;
  }
	
.menu-grid {
    grid-template-columns: 1fr;
    justify-items: center; /* centers items in the grid */
    padding: 1rem 1rem 3rem;
  }

  .menu-card {
    width: 100%;
    max-width: 340px; /* avoids edge-to-edge stretch */
  }
	
.container {
  padding: 1rem;
}
	
  form {
    padding: 1rem;
    margin: 1.5rem auto;
    width: 100%;
    max-width: 100%;
  }
}
	
	
	.contact-btn-wrapper {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.contact-btn-wrapper .btn {
  font-size: 2rem;
  padding: 1rem 2.5rem;
  background-color: #FB0538;
  color: white;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s;
  display: inline-block;
}

.contact-btn-wrapper .btn:hover {
  background-color: #FB0538;
}


form input,
form textarea {
  font-size: 1rem;
  padding: 0.75rem;
}

	
}




@media (max-width: 400px) {
  .brand img {
    height: 80px;
  }

  .form button,
  form input,
  form textarea {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
	
	form {
    padding: 0.75rem;
  }

  form input,
  form textarea {
    font-size: 0.95rem;
  }

  form button {
    font-size: 0.95rem;
    padding: 0.65rem 1.25rem;
  }
	
}





