/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Just+Another+Hand&display=swap');

/* CSS Variables for colors */
:root {
  --color-black: #000000;
  --color-light-orange: #FFFEE8;
  --color-medium-orange: #FFD580;
  --color-dark-orange: #FF8700;
  --color-grey: #e5e4d2;
  --color-white: #ffffff;

  --gradient-orange-dark: linear-gradient(135deg, #FF4E00, #FF8700);
  --gradient-orange-medium: linear-gradient(135deg, #FFC000, #FF8700);
}

/* Base reset */
body {
  margin: 0;
  padding: 0;
  /* font-family: 'Bangers', cursive; */
  background-color: var(--color-light-orange);
  color: var(--color-black);
  line-height: 1.3;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Bangers', cursive;
  letter-spacing: 2px;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3rem;
  background: var(--gradient-orange-dark);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2rem;
  color: var(--color-black);
}

h3 {
  font-size: 1.5rem;
  color: var(--color-black);
}

/* Accent text using Just Another Hand */
.accent-text {
  font-family: 'Just Another Hand', cursive;
  font-size: 2rem;
  color: var(--color-black);
}

/* Links */
a {
  color: var(--color-black);
  text-decoration: none;
  position: relative;
  font-weight: normal;
}

a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background: var(--gradient-orange-medium);
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

.font-bangers {
  font-family: 'Bangers', cursive;
}

.font-just-another-hand {
  font-family: 'Just Another Hand', cursive;
}

/* Buttons */
button, .btn {
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 12px;
  font-family: 'Bangers', cursive;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--gradient-orange-dark);
  color: var(--color-white);
}

button:hover, .btn:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
section {
  padding: 4rem 2rem;
  background-color: var(--color-light-orange);
  margin-bottom: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Hero section */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: var(--gradient-orange-medium);
  color: var(--color-light-orange);
  border-radius: 0 0 40px 40px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  font-family: 'Just Another Hand', cursive;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--color-grey);
  font-size: 0.9rem;
  border-top: 2px solid var(--color-black);
}

/* Age Verification Modal */
.bg-orange-modal {
  background-color: var(--color-medium-orange)
}