nav {
    background-color: #23366c;
}

.nav-item .nav-link {
    color: #f7941d;
    font-size: 1rem;
}

/* Ensure banner images don't exceed container width */
.banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Center the navigation properly */
.navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Positioning utilities */
.position-relative {
    position: relative;
}

.position-absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
}

.position-absolute-center h3,
.position-absolute-center p {
    margin: 0;
    color: white;
    font-size: 18px;
    line-height: 1.5;
}

.position-absolute-center h3 {
    font-size: 24px;
    font-weight: bold;
}

.position-absolute-center p {
    font-size: 13px;
}

/* Responsive text size */
@media (max-width: 768px) {
    .position-absolute-center h3 {
        font-size: 20px;
    }

    .position-absolute-center p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .position-absolute-center h3 {
        font-size: 18px;
    }

    .position-absolute-center p {
        font-size: 12px;
    }
}



.footer {
    background-color: #ddd;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logo {
    text-align: left;
    width: 30%;
}

.footer-logo img {
    width: 150px;
}

.footer-logo p {
    font-size: 14px;
    font-weight: bold;
    color: #23366c;
}

.highlight {
    color: #f7941d;
}

.footer-contact {
    text-align: center;
    width: 30%;
}

.footer-contact h4 {
    color: #f7941d;
    font-size: 18px;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icons a {
    color: #23366c;
    font-size: 18px;
}

.footer-info {
    text-align: right;
    width: 30%;
}

.contact-item {
    font-size: 14px;
    color: #23366c;
    margin-bottom: 5px;
}

.contact-item i {
    color: #f7941d;
    margin-right: 5px;
}

.contact-item img {
    margin-right: 0.5rem;
    width: 20px; /* Adjust size if needed */
    height: auto;
}

.contact-item span {
    font-size: 16px;
    color: #23366c;

}
/* Responsive Styling */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo, .footer-contact, .footer-info {
        width: 100%;
        margin-bottom: 15px;
    }

    .social-icons {
        justify-content: center;
    }
}

.primary-btn {
    background-color: #23366c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.primary-btn:hover {
    background-color: #1a2851; /* Darker shade on hover */
}


/* Text Colors */
.primary-text {
    color: #23366c;
}

.secondary-text {
    color: #f7941d;
}

/* Navbar Toggler */
.custom-toggler .navbar-toggler-icon {
    color: #f7941d;
}

.custom-toggler.navbar-toggler {
    border-color: #f7941d;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: none;
}

/*Trips styling*/
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    width: 100%;
    height: 100%; /* Adjust height as needed */
    object-fit: cover; /* Ensures the image scales properly */
}

.card-img-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5); /* Dark transparent background */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}
.card .position-relative {
    height: auto; /* Adjust as needed */
}

.price-duration {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 5px;
}

.duration,
.price {
    padding: 5px 10px;
}
.card-body {
    text-align: center;
    padding: 15px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f7941d;
    font-style: italic;
}

.card-text {
    font-size: 1rem;
    color: #333;
}
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.album-link {
    text-decoration: none;
    color: inherit;
}

.photo-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.photo-back {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    transform: rotate(-5deg);
    z-index: 1;
}

.photo-front {
    position: relative;
    width: 100%;
    transform: rotate(5deg);
    z-index: 2;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.photo-caption {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f7941d; /* Orange text */
    text-align: center;
    font-style: italic;
}

/* Ensure album images are responsive */
@media (max-width: 768px) {
    .photo-stack {
        height: auto;
    }
    .photo-caption {
        font-size: 0.9rem;
        padding: 4px 8px;
    }
    .photo-back {
        width: 70%;
    }

    .photo-front {
        width: 70%;
    }
}

@media (max-width: 576px) {
    .photo-stack {
        height: auto;
    }
    .photo-caption {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    .photo-back,
    .photo-front {
        width: 80%;
        max-width: 100%;
    }
    .photo-back {
        top: 0;
        left: 0;
    }
}
/* Album Title */
.album-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.orange-text {
    color: #f7941d;
    font-style: italic;
}
.blue-text {
    color: #23366c;
    font-style: italic;
}


.construction-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.construction-img {
    max-width: 300px;
    margin-bottom: 20px;
}

.primary-text {
    color: #23366c;
    font-size: 24px;
    font-weight: bold;
}

.secondary-text {
    color: #666;
    font-size: 18px;
}

.primary-btn {
    background-color: #23366c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.primary-btn:hover {
    background-color: #1a2851;
}
