/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #F8F3EA; /* rustic parchment */
  color: #2B241D;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background: white;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.Logo{
  width: 40%;
}

.Logo img {
  width: 80%;
}



.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #5e2c10;
  margin: 4px 0;
  transition: all var(--transition-speed) ease;
}

nav {
  width: 85%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  height: 90%;
}


#nav-toggle {
  display: none;
}

.nav-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 80%;
  height: 100%;
  transition: color 0.3s;
}


nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #462919;
  font-size: 10pt;
  transition: color var(--transition-speed);
  width: 95%;
  height: 100%;
}

nav a:hover {
  color: rgb(255, 255, 255);
}

.nav-button {
  padding: 0.5rem 1rem;
  color: #020202;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  box-shadow: 0px 3px 0px rgba(161, 161, 161, 0.219);
}

.nav-button:hover {
  background-image: linear-gradient(
    to right,
    rgba(180, 122, 52, 0.929) 10%,
    rgba(146, 97, 5, 0.87) 90%
  );
  font-size: 12pt;
  font-weight: 500;
}

.active {
  background-image: linear-gradient(
    to right,
    rgba(180, 122, 52, 0.929) 10%,
    rgba(146, 97, 5, 0.87) 90%
  );
}
.active {
  font-size: 10pt;
  color: #fff;
  font-weight: 500;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 2rem;
  width: 99%;
  margin-top: 100px;
  min-height: 80vh;
}



/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  color: white;
  padding: 120px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-blend-mode: multiply;
  background-color: rgba(90, 60, 40, 0.5); /* rustic warm overlay */
}

.hero h1, 
.hero h2 {
  margin: 2px;
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  font-weight: 700;
}

.hero p {
  margin: 10px;
  font-size: 1.2rem;
}

.hero img{
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 20px 25px;
  background: #8A4B2A;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
  margin-top: 25px;
}

.btn:hover {
  background: #A68160;
}

/* ===== PAGE TITLES ===== */
.page-title {
  text-align: center;
  font-size: 2.2rem;
  font-family: "Cinzel", serif;
  margin: 50px 0 25px;
}

/* ===== CONTENT TEXT BLOCK ===== */
.text-section {
  width: 80%;
  max-width: 90px;
  margin: 0 auto 40px;
  background: rgba(255,255,255,0.7);
  padding: 30px;
  border-radius: 10px;
  border-left: 6px solid #8A4B2A;
  font-size: 1.1rem;
}

/* ===== GRID SECTIONS ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 0 10%;
  margin-bottom: 40px;
}

/* ===== CARDS ===== */
.card {
  background: #F9F6EE;
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  border: 2px solid #A68160;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: .3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  font-family: "Cinzel", serif;
  color: #8A4B2A;
  margin-bottom: 8px;
}

.card img {
  width: 100%;
  border-radius: 8px;
  margin: 12px 0;
}

/* ===== FORMS (CONTACT PAGE) ===== */
form {
  width: 80%;
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

form label {
  font-weight: 600;
  margin-top: 10px;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea {
  height: 120px;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 60px;
  text-align: center;
  padding: 20px;
  background: #5A3E28;
  color: white;
  font-size: .9rem;
}

footer a {
  color: #E9C48B;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.page-content {
    max-width: 900px;
    margin: auto;
    padding: 40px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.8;
}
.page-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.page-content h3 {
    margin-top: 20px;
    color: #7a4c27;
}


.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.transport-card {
  background: #F9F6EE;
  border: 2px solid #A68160;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.transport-card:hover {
  transform: translateY(-6px);
}

.transport-card img {
  width: 110px;
  height: auto;
  margin-bottom: 15px;
}

.transport-card .btn {
  margin-top: 12px;
  display: inline-block;
}


/* =========================================================
   STAY & TASTE PAGE STYLES
   ========================================================= */

/* Main section spacing */
.stay-taste-section {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

/* Section titles */
.stay-taste-section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-family: "Cinzel", serif;
    margin-bottom: 20px;
}

/* Block spacing */
.st-block {
    margin-bottom: 50px;
}

/* Section subtitles */
.st-block h3 {
    font-size: 1.8rem;
    color: #8A4B2A;
    font-family: "Cinzel", serif;
    margin-bottom: 15px;
}

/* Paragraph style */
.st-block p {
    font-size: 1.07rem;
    margin-bottom: 15px;
    color: #2B241D;
}

/* =========================================================
   HOTELS GRID
   ========================================================= */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.hotel-card {
    background: #F9F6EE;
    border: 2px solid #A68160;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: .3s ease;
}

.hotel-card:hover {
    transform: translateY(-6px);
}

.hotel-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

.hotel-card h3 {
    margin-bottom: 8px;
    color: #8A4B2A;
    font-family: "Cinzel", serif;
}

.price {
    font-weight: 700;
    margin: 6px 0;
    color: #8A4B2A;
}

/* =========================================================
   RESTAURANTS
   ========================================================= */
.restaurant-section h2 {
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: 20px;
    font-family: "Cinzel", serif;
    color: #8A4B2A;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.restaurant-card {
    background: #FFF8F0;
    border: 2px solid #A68160;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: .3s;
}

.restaurant-card:hover {
    transform: translateY(-6px);
}

.restaurant-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

.restaurant-card h3 {
    color: #8A4B2A;
    font-family: "Cinzel", serif;
    margin-bottom: 5px;
}

/* =========================================================
   WINE TOURS
   ========================================================= */
.wine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.wine-card {
    background: #F9F6EE;
    border: 2px solid #A68160;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: .3s ease;
}

.wine-card:hover {
    transform: translateY(-7px);
}

.wine-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

.wine-card h3 {
    font-family: "Cinzel", serif;
    color: #8A4B2A;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-block;
    padding: 10px 22px;
    background: #8A4B2A;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
    margin-top: 8px;
}

.btn:hover {
    background: #A68160;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */



@media (max-width: 1250px) {
  header{
    display: flex;
    flex-direction: row;
    height: 100px;
  }
  main {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    font-size: 0.8rem;
    width: 100%;
  }

  h1 {
    font-size: 10pt;
  }
  h2 {
    font-size: 10pt;
  }
  h3 {
    font-size: 9pt;
  }
  p {
    font-size: 9pt;
  }

  .hero {
    width: 95%;
  }

  .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 100%;
    margin-left: 0.2em;
    margin-right: 0;
    padding: 0;
    margin-top: 100px;
  }


  .section {
    display: block;
    align-items: center;
    justify-content: start;
    margin-bottom: 1rem;
    gap: 0.7rem;
  }
  .contact-section{
    width: 80%;
  }
  /* Position and style for the nav in mobile view */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
  }

  .nav-button {
    overflow: hidden;
    max-height: 0;
  }
  .Logo {
    width: 80%;
  }
  nav {
    flex-direction: column;
    justify-content: space-around;
  }

  /* Display the hamburger icon at small screens */
  .hamburger {
    display: flex;
  }

  /* When the nav-toggle is checked, fully expand the nav menu */
  #nav-toggle:checked + .hamburger + nav {
    display: flex;
    flex-direction: column; /* ensures the items stack vertically */
    width: 100%;
    max-height: 1000px; /* Adjust this value to the maximum height of your menu */
    height: max-content;
    transition: max-height 0.3s ease-in-out;
    z-index: 1000;
  }
  #nav-toggle:checked + .hamburger + .nav-button {
    display: flex;
    flex-direction: column; /* ensures the items stack vertically */
    width: 80%;
  }

  #nav-toggle:checked + .nav-button {
    display: flex;
    flex-direction: column; /* ensures the items stack vertically */
    width: 80%;
    height: 100%;
  }

  /* Transform the hamburger icon into an X */
  #nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }

  #nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
    .stay-taste-section {
        width: 95%;
    }

    .st-block p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .hotel-card img,
    .restaurant-card img,
    .wine-card img {
        height: auto;
    }
    
  .hero h1, 
  .hero h2 {
    font-size: 2rem;
  }

  .text-section {
    width: 90%;
    padding: 20px;
  }
}


/* ===== TEAM / STAFF CARDS ===== */
.team-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 10%;
  text-align: center;
}

.team-section h2 {
  font-family: "Cinzel", serif;
  font-size: 32px;
  color: #8A4B2A;
  margin-bottom: 8px;
}

.team-subtitle {
  color: #5A3E28;
  margin-bottom: 24px;
  font-size: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.team-card {
  background: #F9F6EE;
  border: 2px solid #A68160;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 8px auto 12px;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.team-card h3 {
  font-family: "Cinzel", serif;
  margin-bottom: 4px;
  color: #7C4A2A;
  font-size: 1.15rem;
}

.team-card .role {
  font-weight: 700;
  color: #8A4B2A;
  margin-bottom: 6px;
}

.team-card .bio {
  font-size: .95rem;
  color: #2B241D;
  min-height: 44px; /* keeps heights consistent */
}

.team-actions .btn {
  margin-top: 10px;
  width: 100%;
}
