/* ========================
   IMPORT LOCAL FONTS
   ======================== */
   

@font-face {
  font-family: 'Powerr';
  src: url('fonts/PowerrSemiBold-K75eo.ttf') format('ttf'),
  
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lifehard Logo';
  src: url('fonts/LifelogoHard-Kw4o.ttf') format('ttf'),
      
  font-weight: normal;
  font-style: normal;
}


/* ========================
   FUNBUCHA COLOR PALETTE
   ======================== */
:root {
  --pink: #D73D57;
  --teal-dark: #0C595A;
  --yellow: #D1D646;
  --peach: #CF9586;
  --tan: #CBB69B;
  --teal: #007173;
  --coral: #E1667A;
}

/* ========================
   GLOBAL STYLES
   ======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Franklin Gothic', sans-serif;
  background-color: var(--tan);
  color: var(--teal-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--pink);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--coral);
}

/* ========================
   HEADER & NAV
   ======================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--teal);
  color: white;
}

header .logo {
  height: 60px;
  cursor: pointer;
  font-family: 'Lifehard Logo', sans-serif;
  font-size: 2rem;
}

nav {
  display: flex;
  gap: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

nav a {
  color: white;
  font-family: 'Powerr', cursive;
  font-size: 1.1rem;
  position: relative;
}

nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white;
}

.hero h1 {
  font-family: 'Powerr', cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px var(--teal-dark);
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
}

/* ========================
   BUTTONS
   ======================== */
button, .btn {
  background-color: var(--yellow);
  color: var(--teal-dark);
  font-family: 'Powerr', cursive;
  font-weight: bold;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

button:hover, .btn:hover {
  background-color: var(--coral);
  transform: scale(1.05);
}

/* ========================
   SECTIONS & CARDS
   ======================== */
section {
  padding: 4rem 2rem;
}

.card {
  background-color: var(--peach);
  border-radius: 20px;
  padding: 2rem;
  margin: 1rem;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

/* ========================
   FOOTER
   ======================== */
footer {
  background-color: var(--teal-dark);
  color: var(--tan);
  text-align: center;
  padding: 2rem;
  font-family: 'Franklin Gothic', sans-serif;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.2rem;
  }
}
/* ========================
   DRINKS SECTION
   ======================== */
.drinks {
  padding: 4rem 2rem;
  text-align: center;
  background-color: var(--peach);
  color: var(--teal-dark);
}

.drinks h2 {
  font-family: 'Powerr', cursive;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--pink);
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.drink-card {
  background-color: var(--yellow);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drink-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.drink-card h3 {
  font-family: 'Powerr', cursive;
  font-size: 1.3rem;
  color: var(--teal-dark);
}

.drink-card:hover {
  transform: translateY(-10px);
  box-shadow: 8px 8px 20px rgba(0,0,0,0.3);
}
