
/* General Reset */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h2 {
    color: #868686;  
    font-weight: bold;
    margin-bottom: 10px;
}

p{
    color: #757575; 
    line-height: 1.6;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #000;  
    color: #fff;  
}

.label{
    color: #757575; 
}

/* Navbar */
.navbar {
    background-color: #000; 
    border-bottom: 1px solid #808080;  
}

.navbar-brand .logo {
    max-width: 150px;
}

.navbar-nav .nav-link {
    color: #b3b3b3;
    font-weight: 500;
    position: relative; 
    transition: color 0.3s ease;
    padding: 10px 15px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #808080;  
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #808080;  
}

.navbar-nav .nav-link:hover::after {
    width: 100%; 
}

/* Hero Section */
.hero-section {
    background-color: #000;  
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.hero-text h1 {
    font-size: 35px;
    font-weight: bold;
    color: #808080;  
    opacity: 0;  
    transform: translateY(30px);  
    animation: fadeInUp 1s forwards ease-in-out; 
    animation-delay: 1s;
    margin-bottom: 40px;
    margin-top: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}


.hero-logo img {
    max-width: 100%; 
    height: auto; 
    max-height: 350px; 
    margin-top: 10px; 
    margin-bottom: 20px;
    opacity: 0;  
    transform: translateY(30px);  
    animation: fadeInUpLogo 1s forwards ease-in-out; 
    animation-delay: 0s; 
}


/* Form labels*/
.form-container label {
    color: #757575;
}

.booking-form-container label {
    color: #757575;
}

/* Keyframes for text animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);  
    }
    100% {
        opacity: 1;
        transform: translateY(0);  
    }
}

/* Keyframes for logo animation */
@keyframes fadeInUpLogo {
    0% {
        opacity: 0;
        transform: translateY(30px);  
    }
    100% {
        opacity: 1;
        transform: translateY(0);  
    }
}

/* Buttons */
button, .btn {
    background-color: transparent;
    color: #808080;  
    border: none;
    position: relative;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 10px 20px;
}

button::after, .btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #808080;  
    transition: width 0.5s ease;
}

button:hover, .btn:hover {
    color: #fff;  
}

button:hover::after, .btn:hover::after {
    width: 100%;  
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
}

.footer-links li {
    display: inline;
    margin-right: 15px;
    color: #808080;  
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #808080;  
}



/* Additional styles for home page */

/* Video Section */
.video-section {
    background-color: #111111;  
    padding: 50px 0;
}

.video-section h2 {
    color: #808080;  
    font-weight: bold;
}



/* Photo Gallery Section */
.photo-gallery {
    padding: 50px 0;
}

.photo-gallery h2 {
    color: #808080;  
    font-weight: bold;
    margin-bottom: 30px;
}

/* Set uniform size for photo containers */
.photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 20px; 
}

.image-wrapper {
    width: 100%;
    height: 200px;  
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Set uniform size for photos */
.uniform-size {
    width: 300px;  
    height: 200px; 
    object-fit: cover; 
    object-position: center; 
    border-radius: 8px;
    transition: transform 0.3s ease; 
}

.uniform-size:hover {
    transform: scale(1.05);  
}

.description {
    color: #fff;  
    font-size: 0.9rem;  
    text-align: justify;  
    margin-top: 10px;  
    width: 100%;  
    padding: 0 10px;  
}


/* About Us Page Styles */
.about-photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

.uniform-size-about {
    width: 300px;  
    height: 200px; 
    object-fit: cover; 
    object-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.uniform-size-about:hover {
    transform: scale(1.05); 
}

.description-about { /* Photo description*/
    color: #6e6e6e; 
    font-size: 0.9rem;
    text-align: justify; 
    margin-top: 10px;
    width: 100%;
    padding: 0 10px;
}

.about-description {  /* Container description*/
    background-color: #111111;  
    border-radius: 0px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    margin-bottom: 20px; 
}

.about-description h3 {
    color: #868686;  
    font-weight: bold;
    margin-bottom: 10px;
}

.about-description p {
    color: #757575; 
    line-height: 1.6;
}


/* Lightbox Modal */
.lightbox-modal {
    display: none;  
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);  
    justify-content: center;
    align-items: center;
}

.lightbox-modal-content {
    width: auto; 
    height: 80vh; 
    max-width: 100%; 
    object-fit: cover;  
    display: block;
    margin: auto;
    border-radius: 8px;  
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #808080;
    text-decoration: none;
    cursor: pointer;
}


/* Services Page Styles */

.service-container {
    background-color: #111111;  
    border-radius: 0px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
    margin-bottom: 20px;  
}

.service-name {
    color: #868686;  
    font-weight: bold;
    margin-bottom: 10px;
}

.service-description {
    color: #757575; 
    line-height: 1.6;
}

.buttons {
    font-weight: 500;
    position: relative; 
    transition: color 0.3s ease;
    padding: 10px 15px;
    color: #205b88; 

}

.footer-divider {
    border-top: 1px solid #555;  
    margin: 30px 0;  
    margin-left: 20%;
    margin-right: 20%;

}

.divider {
    border-top: 1px solid #555;  
    margin: 30px 0; 
}

/* language form */
.btn-group button {
    font-weight: bold;      
    padding: 2px 4px;       
    border-radius: 0px;     
    margin-right: 1px;    
    position: relative;
    font-size: x-small;
    margin-left: 8px;
}


/* Statistics Section */
.statistics-section {
    background-color: #111111; 
    padding: 50px 0;
}

.statistics-section h2 {
    color: #808080;  
    font-weight: bold;
    margin-bottom: 30px;
}

.statistics-section h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #808080;  
}


/* Contact Us Form */
.form-container {
    background-color: #000000; 
    color: #fff; 
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 
    padding: 2rem;
}

.form-title, .form-description {
    color: #fff; 
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background-color: #19191a;
    color: #fff; 
    border: none;
    border-bottom: 2px solid #10161b; 
    border-radius: 0;
    padding: 10px;
}

.form-control::placeholder {
    color: #7a869a; 
}

.form-control:focus {
    background-color: #121c25; 
    color: #fff;
    box-shadow: none; 
}

.submit-btn {
    background-color: transparent; 
    color: #205b88; 

}

