/* Χρυσό κείμενο */
.golden2-text {
    color: #D4AF7F;
    font-weight: bold;
}
/* φόντο HEADER FOOTER */
.background-color {
	color: #A9C3A7;
}
/* φόντο στο site */
.background-color: {
    color: #fdf6f0
}
.natural-text {
	color: #5a3c35;
    font-weight: bold;
}
.natural2-text {
	color: #ba6c5e
	font-weight: bold;
}
/* Στυλ για το λογότυπο */
.logo {
	width: 120px;
}

/* Στυλ για το dropdown menu */
.dropdown-menu {
    border: none;
}


/* Χρυσό hover */
.navbar-nav .nav-link:hover {
    color: #D4AF7F ;
    text-decoration: none;
}

/* Στυλ για τις εικόνες του Carousel */
.carousel-img {
    height: 600px;
    object-fit: cover;
}

/* Στυλ για το κείμενο μέσα στο Carousel */
.carousel-caption {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 25px;
    border-radius: 15px;
}

/* Κουμπί "ΚΡΑΤΗΣΗ" */
.btn-gold  {
    background-color: #ba6c5e;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.8);
    transition: all 0.3s ease-in-out;
}


/* Hover για το κουμπί "ΚΡΑΤΗΣΗ" */
.btn-gold:hover {
    background-color: #ba6c5e;
    color: white; /* Λευκό ακόμα και στο hover */
    box-shadow: 0px 0px 15px #ba6c5e;
}

.calendar {
    max-width: 800px;
    margin: auto;
    background: dark;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
	
}
		
.table {
    text-align: center;
}
        
.event-day {
    background: #D4AF7F;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 3px;
    transition: box-shadow 0.3s ease-in-out;
}
        
.event-day:hover {
    box-shadow: 0px 0px 12px #D4AF7F;
    cursor: pointer;
}
        
	/* Στυλ για το κείμενο των events */
.event-text {
    color: #ba6c5e;
    font-weight: bold;
    font-size: 14px;
}


.navigation-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}


.offers-section {
  padding: 60px 20px;
  background: #fdf6f0;
  text-align: center;
}

.offers-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #5a3c35;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.offer-card {
  background-color: #fff;
  border: 2px solid #decfc6;
  border-radius: 15px;
  padding: 25px 20px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
  border-color: #cfa99f;
  background: #fff7f3;
}

.offer-card h3 {
  color: #8b524a;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.offer-card .price {
  font-size: 18px;
  color: #ba6c5e;
  font-weight: bold;
  margin-bottom: 12px;
}

.offer-card p {
  color: #4e4e4e;
  font-size: 15px;
  line-height: 1.5;
}
.newsletter-section {
  background-color: #fff8f4;
  padding: 50px 20px;
  text-align: center;
  margin-top: 40px;
  border-top: 2px solid #e0d6cf;
}

.newsletter-section h2 {
  color: #7c574f;
  font-size: 26px;
  margin-bottom: 10px;
}

.newsletter-section p {
  color: #6b4b3e;
  font-size: 16px;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.newsletter-form input[type="name"] {
  padding: 12px 15px;
  width: 280px;
  border: 1px solid #d2b5a3;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
}
.newsletter-form input[type="email"] {
  padding: 12px 15px;
  width: 280px;
  border: 1px solid #d2b5a3;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
}


.newsletter-form button {
  background-color: #ba6c5e;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #a2564b;
}
.faq-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  background: #fff8f4;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-item {
  border-bottom: 1px solid #e0d6cf;
  padding: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-item h4 {
  color: #7c574f;
  font-size: 17px;
  margin: 0;
  position: relative;
  padding-right: 20px;
}

.faq-item h4::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #ba6c5e;
  font-size: 20px;
}

.faq-item.active h4::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #6b4b3e;
  font-size: 15px;
  margin-top: 8px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}
.containerimage1 {
    background-image: url('faqs.jpg'); /* Βάλε το δικό σου αρχείο */
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 50px;
}
#map-container {
    height: 400px;
    width: 100%;
}

        .team-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 900px;
            margin: 50px auto;
        }
        .team-member {
            background: white;
            padding: 10px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }
        .team-member:hover {
            transform: scale(1.05);
        }
        .team-member img {
            width: 100%;
            height: auto;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 5px;
        }
        .team-member p {
            margin-top: 10px;
            font-size: 14px;
            color: #333;
        }
        @media (max-width: 768px) {
            .team-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .team-container {
                grid-template-columns: repeat(1, 1fr);
            }
        }
/* Responsive */
@media (max-width: 768px) {
    .logo 
    {
        width: 90px;
    }
    
    .carousel-img {
        height: 350px;
    }

    .buttons-catalog
    {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .buttons-catalog button
    {
        width: 40%;
    }

    .containerimage {
        background-image: url('Image25.jpg'); /* Βάλε το δικό σου αρχείο */
        background-size: cover;
        background-position: center;
        border-radius: 15px;
        padding: 10px;
    }
    
    .containerimage1 {
        background-image: url('side-view-friends-having-lunch.jpg'); /* Βάλε το δικό σου αρχείο */
        background-size: cover;
        background-position: center;
        border-radius: 15px;
        padding: 10px;
    }

    .navigation-buttons { flex-direction: column; }
    .btn { width: 100%; }
    .table thead { font-size: 14px; }
}

