

:root {
    --primary-color: #050a52; 
    --secondary-color: #ffc70f; 
    --accent-color: #78d6ee; 
    --text-dark: #97caec;
    --text-light: #f5f6fa;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    max-width: 100vw;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

p {
    line-height: 1.7;
}


#mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: rgba(8, 3, 78, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#mainNav .navbar-brand {
    font-size: 1.7rem;
    font-weight: 700;
}

#mainNav .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    position: relative;
}

#mainNav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 80%;
}


header.masthead {
    padding-top: 10rem;
    padding-bottom: calc(10rem - 4.5rem);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('../images/hero.png');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    min-height: 100vh;
}

header.masthead h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

header.masthead .divider {
    max-width: 5rem;
    margin: 1.5rem auto;
    border-width: 0.2rem;
    border-color: var(--secondary-color);
    opacity: 1;
}


.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.page-section {
    padding: 6rem 0;
}
.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
}
.page-section .divider {
    max-width: 4rem;
    margin: 1.5rem auto 3rem;
    border-width: 0.2rem;
    border-color: var(--primary-color);
    opacity: 1;
}


.carousel-img {
    height: 600px;
    object-fit: cover;
}
.glass-caption {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    bottom: 3rem;
    max-width: 60%;
    margin: 0 auto;
}
.glass-caption h5 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}


.destination-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}
.destination-card img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}
.destination-card:hover img {
    transform: scale(1.05);
}

footer {
    background-color: var(--text-dark);
}
.footer-link {
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: var(--secondary-color) !important;
}
.social-icons a {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.social-icons a:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
}


.form-control, .form-select {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #ced4da;
    font-family: 'Outfit', sans-serif;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(11, 94, 57, 0.25);
}
