@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Playfair+Display:wght@600&display=swap');

:root {
  --main-color: #183620;
  --accent-color: #5a7f65;
  --bg-light: #fdfbf7;
  --bg-dark: #ede8dc;
  --text-dark: #2f2f2f;
  --highlight: #bfa980;
}

.menu-toggle {
  display: none;
  font-size: 1.3rem;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1200;
}

@media (max-width: 768px) {
  nav.navbar ul {
    flex-direction: column;
    background-color: #1e4d2b;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1100;

    /* Remove display: none */
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;

    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  nav.navbar ul.show {
    max-height: 500px;  /* Enough to fit menu */
    opacity: 1;
    pointer-events: auto;
	  position: absolute;
	  top: 9%;
  }

  .menu-toggle {
    display: block;
  }

  nav.navbar ul li {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}





body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

header {
  background: var(--main-color);
  height: 45px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  padding-left: 1.5rem;
  padding-right: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.8;
}

.hero {
  background: url('htmlimages/index.jpg') no-repeat center center/cover;  
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 0;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--highlight);
  color: white;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.btn:hover {
  background: #a78b64;
}

section {
  padding: 4rem 2rem;
  max-width: 100%;
  margin: auto;
  background-color: var(--bg-light);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--main-color);
}

.intro ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}

.gallery .images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.pricing .cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  background: var(--bg-dark);
  border-left: 5px solid var(--highlight);
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--accent-color);
}

.reviews blockquote {
  border-left: 5px solid var(--highlight);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button {
  padding: 0.75rem;
  background: var(--main-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #163d22;
}

footer {
  background: var(--main-color);
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}

.contact-section {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-title {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1;
  min-width: 200px;
  color: #1e4d2b;
  display: flex;
  flex-direction: column;
}

.contact-box .label {
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
}

.contact-box .icon {
  width: 17px;
  margin-right: 7px;
  vertical-align: middle;
}

/* 🧱 Make it stack on smaller screens */
@media (max-width: 768px) {
  .contact-methods {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .contact-box {
    align-items: center;
    text-align: center;
  }
}

.kainos{
  font-size: 20px;
}