@font-face {
  font-family: "BeautifullyDelicious";
  src: url("assets/fonts/FontsFree-Net-BeautifullyDelicious.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #221e1c;
  color: #f4f1ee;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/*Navbar*/
.navbar {
  height: 75px;
  display: flex;
  justify-content: space-between;
  padding: 16px 0px;
  background-color: #221e1c;
}

.nav-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*Branding*/
.brand-links {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.brand-logo {
  width: 50px;
  height: auto;
  display: flex;
}

.brand-name {
  color: #c7a17a;
  font-size: 20px;
  font-weight: 100;
  line-height: 1;
}

/*Navigation Links*/
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #c7a17a;
}

/*Hero-Section*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 6%;
}

/*Hero-Text*/
.hero-text {
  flex: 1;
  position: relative;
  margin-left: 40px;
}

/*Ink-Text*/
.ink-text {
  font-family: BeautifullyDelicious;
  font-size: 300px;
  color: white;
  font-weight: normal;
  font-style: italic;
  margin-bottom: -40px;
  margin-top: 20px;
  transform: translateY(15px);
  text-shadow: 8px 8px 0px rgba(255, 255, 255, 0.3);
  letter-spacing: -5px;
}

/*Ampersand*/
.ampersand {
  font-family: BeautifullyDelicious;
  font-size: 50px;
  color: white;
  font-weight: normal;
  font-style: italic;
  color: white;
  margin-left: 40px;
  margin-top: 20px;
  transform: translateY(15px);
}

.line {
  position: absolute;
  top: 270px;
  left: 350px;
  width: 900px;
  height: 2px;
  background-color: #ffffff;
  z-index: 1;
}

/*Espresso-Text*/
.espresso-text {
  font-size: 280px;
  color: #f5e6d3;
  font-weight: 400;
  letter-spacing: -5px;
  text-transform: uppercase;
  font-family: "Impact", sans-serif;
  line-height: 0.9;
  margin-left: 150px;
  margin-top: -200px;
}

/*Hero-Illustration*/
.hero-illustration {
  position: absolute;
  top: 75px;
  right: 11%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: -2;
}

.hero-illustration img {
  width: 375px;
  height: 375px;
  object-fit: cover;
  position: relative;
}

/* About Section */
.about {
  padding: 80px 6%;
  background-color: #fcefe6;
  display: flex;
  align-items: center;
  gap: 100px;
}

/*About Illustration*/
.about-illustration img {
  width: 500px;
  height: auto;
}

/*About Text*/
.about-text {
  flex: 1;
  max-width: 600px;
  margin-left: 50px;
}

/*About Title*/
.about-title {
  font-size: 40px;
  color: #3b332e;
  margin-bottom: 20px;
  font-family: "Segoe Script", "Apple Chancery", cursive;
  font-style: italic;
}

/*Body Text*/
.about-text p {
  font-family: "Georgia", serif;
  font-size: 17px;
  line-height: 1.8;
  color: #5a433b;
  margin-bottom: 24px;
  margin-left: 50px;
  max-width: 450px;
}

/*Menu Section*/
.menu {
  background-color: #221e1c;
  padding: 120px 6%;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/*Menu Title*/

.menu-title {
  text-align: center;
  font-size: 48px;
  color: #fffef2;
  margin-bottom: 50px;
  margin-top: 50px;
  font-family: "Arimo", sans-serif;
}

/*Menu Grids*/
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
}

/*Menu Card*/
.menu-card {
  background-color: #fffef2;
  padding: 20px;
  text-align: center;
  min-width: 300px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.menu-card h3 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 10px;
  color: #1f1b18;
}

.menu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px #c7a17a;
}

/* MENU ITEM */
.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px dashed #b7a79b;
  font-family: "Courier New", monospace;
  font-size: 16px;
  color: #2e2320;
}

.menu-item:last-child {
  border-bottom: none;
}

/*Special Menu Section*/
.special-menu {
  padding: 80px 6%;
  background-color: #221e1c;
  min-height: 80vh;
  text-align: center;
  margin-top: -50px;
}
.menu-card img {
  width: 250px;
  height: auto;
  margin-bottom: 15px;
}

/* Card-Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-header h3 {
  font-size: 18px;
  color: #1f1b18;
  font-family: monospace;
  font-weight: bold;
}

.price {
  font-size: 16px;
  color: #1f1b18;
  font-family: monospace;
}

.card-divider {
  border-bottom: 1px dashed #b7a79b;
  margin: 16px 0;
}

/*Special-Menu-item*/
.menu-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #2e2320;
  text-align: left;
}

/*Calendar Illustration*/
.calendar-intro {
  background: #fcefe6;
  text-align: center;
  padding: 120px 6%;
  padding-bottom: 30px;
}

.calendar-intro h2 {
  font-size: 36px;
  color: #3b332e;
  margin-top: -100px;
  font-family: "Arimo", sans-serif;
  text-align: center;
  font-size: 48px;
  position: relative;
  z-index: 2;
}

.calendar-intro p {
  font-size: 18px;
  color: #5a433b;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-family: monospace;
  font-style: italic;
  position: relative;
  z-index: 2;
}

.calendar-illustration img {
  width: 100%;
  height: auto;
  margin-top: 20px;
  z-index: 0;
}

/* Event-List*/
.calendar-events {
  background: #1f1b18;
  padding: 120px 6%;
  width: 100%;
}

.calendar-events h2 {
  text-align: center;
  font-size: 42px;
  margin-top: -50px;
  margin-bottom: 50px;
  color: #fcefe6;
}

/* Calendar-Grid*/
.event-grids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  justify-items: center;
}

/*Event-Card*/
.event-card {
  background: #fdf6ec;
  color: #1f1b18;
  padding: 30px;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px #c7a17a;
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.event-header span {
  font-size: 16px;
}

.event-card hr {
  border: none;
  border-top: 1px dashed #1f1b18;
  margin: 16px 0;
}

.event-card p {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

/*Reservation-Illustration*/
.reservation-intro {
  background: #1f1b18;
  text-align: center;
  padding: 120px 6%;
  padding-bottom: 30px;
}

.reservation-intro h2 {
  font-size: 36px;
  color: #fcefe6;
  margin-top: -150px;
  font-family: "Arimo", sans-serif;
  text-align: center;
  font-size: 48px;
  position: relative;
  z-index: 2;
}

.reservation-intro p {
  font-size: 18px;
  color: #fcefe6;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-family: monospace;
  font-style: italic;
  position: relative;
  z-index: 2;
}

/*Reservation-Form*/
.reservation-container {
  margin: 0 auto;
  padding: 120px 6%;
  background: #1f1b18;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/*Left-text*/
.reservation-text {
  color: #fcefe6;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 500;
}

/*Reservation-Form Styles*/
.reservation-form {
  background-color: #fffef2;
  padding: 40px;
  border-radius: 20px;
}

.reservation-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #3a2e2a;
}

.reservation-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #c8bdb4;
  margin-bottom: 24px;
  background: transparent;
  font-family: inherit;
}

.time-slot {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: none;
  background-color: #e9e2d8;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.reserve-btn {
  width: 100%;
  padding: 16px;
  margin-top: 20px;
  background-color: #5b3a32;
  color: #f6efe7;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
}

/*Footer*/
.contact-footer {
  background-color: #1f1b18;
  color: #f6efe7;
  padding: 80px 10% 40px;
  font-family: "Poppins", sans-serif;
}

.footer-top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 150px;
  margin-bottom: 100px;
}

.address h4,
.social-links h4 {
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #d6cfc7;
}

.address p {
  line-height: 1.8;
  font-size: 15px;
}

.social-links ul {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin-bottom: 10px;
}

.social-links a {
  text-decoration: none;
  color: #f5f1ea;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #c7a17a;
}

.tagline {
  font-family: BeautifullyDelicious;
  font-size: 200px;
  color: #f6efe7;
  font-weight: normal;
  font-style: italic;
  margin-bottom: -40px;
  margin-top: 20px;
  letter-spacing: -5px;
  text-align: center;
}

/*===========================*/
/*     RESPONSIVE DESIGN     */
/*===========================*/

/* Large Screens (1024px and below) */
@media (max-width: 1024px) {
  /*Navbar*/
  .nav-container {
    width: 95%;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 14px;
  }

  /*Hero Section*/
  .hero {
    padding: 0 4%;
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
    flex-direction: column;
  }

  .hero-text {
    margin-left: 0;
    text-align: center;
  }

  .ink-text {
    font-size: 180px;
    margin-bottom: -20px;
  }

  .line {
    width: 600px;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
  }

  .espresso-text {
    font-size: 160px;
    margin-left: 0;
    margin-top: -80px;
  }

  .ampersand {
    margin-left: 0;
  }

  .hero-illustration {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }

  .hero-illustration img {
    width: 300px;
    height: 300px;
  }

  /*About Section*/
  .about {
    flex-direction: column;
    gap: 40px;
    padding: 60px 4%;
  }

  .about-illustration img {
    width: 100%;
    max-width: 400px;
  }

  .about-text {
    margin-left: 0;
  }

  .about-text p {
    margin-left: 0;
    max-width: 100%;
  }

  /*Menu*/
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .menu-card {
    min-width: 250px;
  }

  .menu-card h3 {
    font-size: 20px;
  }

  .menu-card img {
    width: 200px;
    height: 200px;
  }

  /*Calendar Events*/
  .event-grids {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /*Reservation Form*/
  .reservation-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 4%;
  }

  .reservation-text {
    font-size: 32px;
  }

  /*Footer*/
  .footer-top {
    gap: 80px;
  }

  .tagline {
    font-size: 120px;
    margin-bottom: -20px;
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  /*Navbar*/
  .navbar {
    height: auto;
    padding: 12px 0;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;
    width: 90%;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    width: 100%;
  }

  .nav-links a {
    font-size: 13px;
    display: block;
    padding: 8px 0;
  }

  .brand-name {
    font-size: 16px;
  }

  /*Hero Section*/
  .hero {
    padding: 20px 4% 30px;
    min-height: auto;
  }

  .hero-text {
    text-align: center;
  }

  .ink-text {
    font-size: 120px;
    margin-bottom: -10px;
    text-shadow: 4px 4px 0px rgba(255, 255, 255, 0.2);
  }

  .line {
    display: none;
  }

  .espresso-text {
    font-size: 100px;
    margin-top: -30px;
  }

  .hero-illustration img {
    width: 250px;
    height: 250px;
  }

  /*About Section*/
  .about {
    padding: 40px 4%;
    gap: 30px;
  }

  .about-illustration img {
    width: 100%;
    max-width: 300px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }

  .menu {
    padding: 60px 4%;
    min-height: auto;
  }

  .menu-title {
    font-size: 32px;
    margin-top: 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .menu-card {
    min-width: 100%;
  }

  .menu-card h3 {
    font-size: 18px;
  }

  .menu-card img {
    width: 150px;
    height: 150px;
  }

  .menu-item {
    font-size: 14px;
    padding: 12px 0;
  }

  .special-menu {
    padding: 60px 4%;
    margin-top: 0;
  }

  /*Calendar*/
  .calendar-intro {
    padding: 60px 4% 20px;
    margin-top: -75px;
  }

  .calendar-intro h2 {
    margin-top: 0;
    font-size: 32px;
  }

  .calendar-intro p {
    font-size: 16px;
  }

  .calendar-events {
    padding: 60px 4%;
  }

  .calendar-events h2 {
    font-size: 28px;
    margin-top: 0;
  }

  .event-grids {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-card {
    padding: 20px;
  }

  .event-card h3 {
    font-size: 16px;
  }

  /*Reservation*/
  .reservation-intro {
    padding: 60px 4% 20px;
    margin-top: -75px;
  }

  .reservation-intro h2 {
    margin-top: 0;
    font-size: 32px;
  }

  .reservation-intro p {
    font-size: 16px;
  }

  .reservation-container {
    padding: 60px 4%;
    gap: 30px;
  }

  .reservation-text {
    font-size: 24px;
    line-height: 1.3;
  }

  .reservation-form {
    padding: 30px;
  }

  .reservation-form input,
  .reservation-form label,
  .time-slot {
    font-size: 14px;
  }

  /*Footer*/
  .contact-footer {
    padding: 60px 4% 30px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .address h4,
  .social-links h4 {
    font-size: 14px;
  }

  .address p,
  .social-links a {
    font-size: 13px;
  }

  .tagline {
    font-size: 80px;
    margin-bottom: -15px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  /*Navbar*/
  .navbar {
    height: auto;
  }

  .nav-container {
    flex-direction: column;
    width: 100%;
    padding: 0 15px;
    gap: 10px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    font-size: 12px;
    padding: 6px 0;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-logo {
    width: 35px;
  }

  /*Hero Section*/
  .hero {
    padding: 15px 3% 20px;
    min-height: auto;
  }

  .ink-text {
    font-size: 80px;
    margin-bottom: 0;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.2);
  }

  .espresso-text {
    font-size: 70px;
    margin-top: -15px;
    letter-spacing: -2px;
  }

  .ampersand {
    font-size: 35px;
    margin-left: 15px;
  }

  .hero-illustration img {
    width: 200px;
    height: 200px;
  }

  /*About Section*/
  .about {
    padding: 30px 3%;
    gap: 20px;
  }

  .about-title {
    font-size: 20px;
  }

  .about-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  /*Menu*/
  .menu {
    padding: 40px 3%;
  }

  .menu-title {
    font-size: 24px;
  }

  .menu-card {
    min-width: 100%;
    padding: 15px;
  }

  .menu-card h3 {
    font-size: 16px;
  }

  .menu-card img {
    width: 120px;
    height: 120px;
  }

  .menu-item {
    font-size: 13px;
    padding: 10px 0;
  }

  .special-menu {
    padding: 40px 3%;
  }

  /*Calendar*/
  .calendar-intro {
    padding: 40px 3% 15px;
  }

  .calendar-intro h2 {
    font-size: 24px;
  }

  .calendar-intro p {
    font-size: 14px;
  }

  .calendar-events {
    padding: 40px 3%;
  }

  .calendar-events h2 {
    font-size: 22px;
  }

  .event-card {
    padding: 15px;
  }

  .event-card h3 {
    font-size: 15px;
  }

  .event-card p {
    font-size: 13px;
  }

  /*Reservation*/
  .reservation-intro {
    padding: 40px 3% 15px;
  }

  .reservation-intro h2 {
    font-size: 24px;
  }

  .reservation-intro p {
    font-size: 14px;
  }

  .reservation-container {
    padding: 40px 3%;
    gap: 20px;
  }

  .reservation-text {
    font-size: 18px;
    line-height: 1.3;
  }

  .reservation-form {
    padding: 20px;
    border-radius: 15px;
  }

  .reservation-form input,
  .reservation-form label,
  .time-slot {
    font-size: 13px;
  }

  .time-slot {
    padding: 10px 12px;
  }

  .reserve-btn {
    font-size: 14px;
    padding: 14px;
  }

  /*Footer*/
  .contact-footer {
    padding: 40px 3% 20px;
  }

  .footer-top {
    gap: 30px;
  }

  .address h4,
  .social-links h4 {
    font-size: 13px;
  }

  .address p,
  .social-links a {
    font-size: 12px;
  }

  .tagline {
    font-size: 50px;
    margin-bottom: -10px;
    letter-spacing: -2px;
  }
}
