
/* HOMEPAGE */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px; 
    display: flex;
    align-items: stretch;
    background: white;
    border: 3px; 
    z-index: 1000;
}

/* logo box */
.logo-box {
    width: 320px;
    border-right: 3px solid #1d1366;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-box img {
    max-width: 150px;
    height: auto;
}

/* Instagram icon */
.instagram img {
    width: 90px;
    padding: 2px;
}

/* navigation bar */
.nav-box {
    flex: 1;
    background: #003366; 
    border-left: none;
    display: flex;
    align-items: center;
}

.nav-box ul {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.nav-box a {
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s;
}

.nav-box a:hover {
    color: lightblue;
}
nav .active a {
    color: #007bff;
}
body {
    margin: 0;
    padding: 0;
    font-family: serif;
    background-color: #f6f3eb;
}

/* grid */
.columns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 10px;
    margin: auto;
    max-width: 1200px;
    width: 95%;
    
}

.column-w100 {
    width: 100%;
}

.column-w50 {
    width: 50%;
}
@media(max-width:768px) {
    .column-w50, .columns {
    width: 100%;
}
}

.center {
    text-align: center;
}

.main-content {
    margin-top: 100px;

}
.main-banner {
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../image/puglia_beach.jpg);
    background-position: center;
    background-size: cover;
}
.main-banner h1, .main-banner h3 {
    color: rgb(255, 255, 255);
    text-shadow: rgb(1, 1, 1) 0 0 1px;
}


.gallery-container {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
}


.image-column {
    width: 45%;
   
}

.image-column img {
    width: 100%;
    border-radius: 12px;                 
    transition: all 0.8s ease-out;
    height:auto;
    margin-bottom: 20px;
}


.text-column {
    width: 45%;
    font-size: 20px;
    line-height: 1.6;
  
}

.text-content {
    position: sticky;
    top: 140px;
}



.text-column h2 {
    font-size: 34px;
    margin-bottom: 20px;
}
.margin-top50 {
    margin-top: 50px;

}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery-container {
        flex-direction: column;
    }

    .image-column, .text-column {
        width: 100%;
    }
}


/* ABOUT US */

#about-who {
    padding: 100px 0px 40px 0px;
    
}

#about-contact {
    width: 100%;
    max-width: none;
    padding: 50px 0px;
    background-color: rgb(52 58 64);
    color: white;
    margin-top: 40px;
    border-bottom: 1px solid #4d4d4d;
}

.about-contact-text {
    font-size: 2rem;
    font-weight: bold;

}

.about-contact-text span {
    display: block;
    font-weight: 300;
    font-size: 1.5rem;
}


@media (max-width: 850px) {
    .about-us-sections {
        flex-direction: column;
        align-items: center;
    }
    .about-section {
        width: 80%;
        margin-bottom: 30px;
    }
}



/* TOURS */

.main-banner-tours {
    background-image: url(../image/green-mosque.webp);
}

#tour-packages {
    margin-top: 50px;
}

.package-info {
    opacity: 0;
    height: 0;
    transition: all 300ms ease;
}
.package-info.active {
    opacity: 1;
    height: 190px;
    margin-bottom: 26px;
}

.package-card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media(min-width:768px) {
    .package-card {
        min-height: 390px;
    }
    
}
.package-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.package-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.package-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.rating {
    color: #ffc107;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background-color: #0056b3;
}


/* TESTIMONIALS*/

.testimonial-card {
            background: linear-gradient(145deg, #f3f4f6, #ffffff);
            border-radius: 20px;
            box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .quote-icon {
            font-size: 4rem;
            color: #6366f1;
            opacity: 0.2;
        }

        .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #ffffff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            background-color: #6366f1;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .carousel-control-prev {
            left: -20px;
        }

        .carousel-control-next {
            right: -20px;
        }

        .carousel-indicators {
            bottom: -50px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #6366f1;
            opacity: 0.5;
        }

        .carousel-indicators .active {
            opacity: 1;
        }


/*GALLERY PAGE*/

.gallery-main-container {
    padding: 80px 0 40px;
}
.tz-gallery {
    padding: 40px;
}

/* Override bootstrap column paddings */
.tz-gallery .row>div {
    position: relative;
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'bootstrap-icons';
    content:  "\f62c";
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}


/* CONTACT US */
.contact-container {
  max-width: 600px;         
  margin: 60px auto;        
  padding: 40px;             
  background: white;        
  border-radius: 20px;       
  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
  display: flex;
  flex-direction: column;
  gap: 15px;       
  margin-top: 150px;          
}

.contact-container label {
  font-weight: 600;
  text-align: left;
}

.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-container button {
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: black;
  color: white;
  font-size: 16px;
  margin-top: 10px;
}


div.tableRow {
  display: table-row;
  text-align: center;
}

div.tableRow p {
  display: table-cell;
  vertical-align: top;
  padding: 3px;
}
div.tableRow p:first-child {
  text-align: center;
}
p.heading {
  font-weight: bold;
}

.footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
}

.footer p {
    margin-bottom: 0;
}