/* General Body Styles */
body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: #262626; /* Uber Eats uses a dark gray/black for text */
  background-color: #ffffff;
}

/* Brand Accent Color */
.brand-green {
  color: #06C167;
}

.bg-brand-green {
  background-color: #06C167;
}

.hover-bg-brand-green-dark:hover {
  background-color: #05A056;
}

/* Hero Section Styles */
.hero-bg-image {
  background-image: url('https://shpejt.net/images/shpejt-banner.jpg'); /* User's specified background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* 50% black overlay for better text contrast */
  z-index: 1;
}

.hero-title {
    font-weight: 900; /* Extra bold for hero title */
    font-size: 3.5rem; /* Larger hero title */
    line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem; /* Even larger on desktop */
  }
}

/* Section Title Styles */
.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700; /* Bold section titles */
    color: #000000;
}

/* Card Shadow Style */
.card-shadow {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05), 0px 0px 4px rgba(0, 0, 0, 0.05);
}

/* Input Field Style (Uber Eats Inspired) */
.input-uber-style {
    border: 1px solid #E0E0E0;
    background-color: #F6F6F6;
    padding: 1rem;
    width: 100%;
    font-size: 1rem;
}

.input-uber-style:focus {
    outline: none;
    border-color: #000000;
    background-color: #ffffff;
}

/* Button Styles (Uber Eats Inspired) */
.btn-primary {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    padding: 0.875rem 1.5rem; /* 14px 24px */
    text-align: center;
    transition: background-color 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: #333333;
}

.btn-secondary {
    background-color: #EEEEEE;
    color: #000000;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    text-align: center;
    transition: background-color 0.2s ease-in-out;
}

.btn-secondary:hover {
    background-color: #DDDDDD;
}

/* Green Button Style for "Kërko" */
.btn-brand-green {
    background-color: #06C167; /* brand-green */
    color: #ffffff;
    font-weight: 600;
    padding: 0.875rem 1.5rem; /* Consistent padding */
    text-align: center;
    transition: background-color 0.2s ease-in-out;
}

.btn-brand-green:hover {
    background-color: #05A056; /* hover-bg-brand-green-dark */
}


/* Screen-reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
