/* General Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #fff;
    text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid white;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    font-weight: normal;
    font-family: 'Montserrat', sans-serif;
    background-color: transparent !important;
    transition: all 0.3s ease;
    box-shadow: none;
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
    padding: 8px 15px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Section Styles */
section {
    padding: 100px 0;
    background-color: #121212;
    position: relative;
}

section .map {
	padding: 100px 0;
    background-color: #fff;
    position: relative;
}

section:nth-child(even) {
    background-color: #1a1a1a;
}

#about p {
    text-align: justify;
    padding: 1rem 0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-full {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.content-full.show {
    opacity: 1;
    max-height: 2000px;
}

.about-content {
    position: relative;
    margin-bottom: 2rem;
}

.read-more-btn {
    margin-top: 1rem;
}

.read-more-btn.active {
    background-color: #fff;
    color: #121212;
}

h2 {
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-align: center;
}


/* Contact Form */
/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-btn.prev {
    left: -60px;
}

.nav-btn.next {
    right: -60px;
}

.nav-btn.hidden {
    display: none;
}

.thumbnails-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    max-width: 80%;
    margin-top: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.thumbnails-slider::-webkit-scrollbar {
    height: 6px;
}

.thumbnails-slider::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnails-slider::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.thumbnail.active {
    border-color: white;
}

.lightbox.show .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.close-lightbox:hover {
    color: #f8f9fa;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.nav-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.thumbnails-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px;
    max-width: 90%;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    opacity: 1;
    border-color: white;
}

.thumbnail:hover {
    opacity: 0.8;
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
    transition: opacity 0.3s ease;
}

.form-control:focus::placeholder {
    opacity: 0.7;
}

.invalid-feedback {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-control.is-invalid {
    border-color: #ff4d4d;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23ff4d4d' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff4d4d' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 77, 77, 0.25);
}

.form-control.is-invalid + .invalid-feedback {
    opacity: 1;
    transform: translateY(0);
}

.alert {
    margin-bottom: 1rem;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.alert.show {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    padding: 12px 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-dark {
    background-color: #212529;
    border-color: #212529;
}

.btn-dark:hover {
    background-color: #343a40;
    border-color: #343a40;
}

.spinner-border {
    margin-right: 8px;
    width: 1.2rem;
    height: 1.2rem;
}

.btn {
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Carousel Section Styles */
#carousel {
    position: relative;
}

#carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#carousel .container {
    position: relative;
    z-index: 2;
}

#carousel h2 {
    color: #ffffff;
    margin-bottom: 40px;
}

.carousel-item {
    text-align: center;
}

.carousel-item img {
    max-height: 400px;
    width: auto;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 20px;
    bottom: -20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 80%;
    transition: all 0.3s ease;
}

.carousel-item.active .carousel-caption {
    bottom: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* Gallery Styles */
.gallery-tabs {
    margin-bottom: 2rem;
}

.gallery-tabs .btn {
    margin: 0 0.5rem;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}



/* Add container centering */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .btn-outline-light {
    padding: 12px 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero .btn-outline-light:hover {
    background-color: #fff;
    color: #121212;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-info h4 {
    margin-bottom: 10px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
}

.gallery-info h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.gallery-view {
    background: white;
    color: #121212;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.gallery-view:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.gallery-info {
    text-align: center;
    color: white;
}



#loadMore {
    margin-top: 20px;
    transition: all 0.3s ease;
}

#loadMore:hover {
    transform: translateY(-2px);
}


/* Contact Information Styles */
.contact-info {
    padding: 30px;
    background: rgba(33, 37, 41, 0.08);
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
}

.contact-info h3 {
    color: #a3aeb8;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info h4 {
    color: #212529;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    color: #495057;
    margin-bottom: 1.2rem;
    padding: 0.5rem 0;
    transition: transform 0.2s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item i {
    color: #174471;
    width: 25px;
    margin-top: 4px;
    font-size: 1.2rem;
}

.info-item span {
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    color: #707477;
    transition: all 0.3s ease;
    margin-right: 1.5rem;
    display: inline-block;
}

.social-links a:hover {
    color: #007bff;
    transform: scale(1.1);
    text-decoration: none;
}