:root {
  --blue: #00a8ff;
  --pink: #ff5fa2;
  --yellow: #ffe15d;
  --bg: #f7fbff;
  --text: #222;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* HEADER */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 10%;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.logo {
  height: 200px; /* Increased size */
  max-width: 100%;
  object-fit: contain;
  border-radius: 25px;
}

header nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

header nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}

header nav a:hover {
  color: var(--blue);
}


/* HERO SECTION */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0 30px;
}

.hero button {
  background: white;
  color: var(--blue);
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.hero button:hover {
  background: var(--yellow);
  color: #000;
}

/* ABOUT SECTION */
.about {
  max-width: 1000px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.about h2 {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 800;
}

.about p {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #555;
}

/* DRINKS SECTION */
.flavours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 50px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.flavour {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s;
}

.flavour:hover {
  transform: translateY(-5px);
}

.flavour span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 8px;
}

.flavour h3 {
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 8px;
}

.flavour p {
  color: #555;
  font-size: 1rem;
}

/* GALLERY SECTION */
.gallery {
  text-align: center;
  padding: 60px 20px;
  background: white;
}

.gallery h2 {
  font-size: 2rem;
  color: var(--blue);
  font-weight: 800;
}

.gallery p {
  margin: 10px 0 30px;
  color: #555;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.photo {
  background: #eee;
  height: 160px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: 600;
}

.photo:hover{
    transform: scale(1.05);
}

.placeholder {
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: white;
}

/* CONTACT SECTION */
.contact {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
}

.contact h2 {
  font-size: 2rem;
  font-weight: 800;
}

form {
  max-width: 600px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

button[type="submit"] {
  background: var(--yellow);
  color: #000;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

button[type="submit"]:hover {
  background: white;
}

/* SOCIALS */
.socials {
  margin-top: 40px;
}

.socials h3 {
  margin-bottom: 10px;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 1.8rem;
}

.icon {
  text-decoration: none;
  color: white;
  transition: transform 0.3s;
}

.icon:hover {
  transform: scale(1.2);
}

/* FOOTER */
footer {
  background: #fff;
  text-align: center;
  padding: 20px;
  color: #666;
  margin-top: 50px;
}
