@charset "UTF-8";
/* CSS Document */

/* ===== GENERAL ===== */
body {
    background-color: black;
    font-family: Arial, sans-serif;
    color: aliceblue;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

p {
    font-size: 20px;
}

.clear {
    float: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

/* ===== HEADER ===== */
.header-wrapper {
    background-color: black; /* full black background */
    width: 100%;
    display: flex;
    justify-content: space-between; /* logo left, socials right */
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    flex-wrap: nowrap; /* prevent wrapping on desktop */
}

.logo-container {
    text-align: left;
    margin: 0;
}

.logo {
    width: 200px;
    height: auto;
}

.social-container {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
	margin-top: 170px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column; /* stack logo and socials */
        align-items: center;
        text-align: center;
        padding: 15px;
        flex-wrap: wrap; /* allow wrapping on mobile */
    }

    .logo {
        width: 150px;
        margin-bottom: 10px;
    }

    .social-container {
        justify-content: center;
        margin-bottom: 10px;
		margin-top: 0px;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: deeppink;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s;
}

.navbar ul li a:hover {
    background-color: gold;
    border-radius: 4px;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: chartreuse;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: deeppink;
        padding: 10px 0;
        z-index: 100;
        text-align: center;
    }

    .navbar ul.active {
        display: flex;
    }

    .navbar ul li {
        margin: 2px 0;
    }

    .navbar ul li a {
        padding: 6px 0;
        display: block;
        text-align: center;
    }

    .hamburger {
        display: flex;
        z-index: 101;
    }
	
	
    .navbar {
        height: 40px;       /* or 65px if you want a little more space */
        align-items: center;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 101;
    }
	
	
	
}

/* ===== PAGE TITLES ===== */
.page-title, h1 {
    font-size: 4em;
    color: aqua;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px #000000;
}

@media (max-width: 768px) {
    .page-title, h1 {
        font-size: 2em;
    }
}

/* ===== HOME PAGE CONTENT ===== */
.home-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.8);
}

.home-content .image {
    flex: 1;
}

.home-content .image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.home-content .text {
    flex: 1;
    color: #000;
}

.home-content .text p {
    line-height: 1.6;
}

/* ===== TRAVEL DATES ===== */
.travel-section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.travel-section h2 {
    margin-top: 0;
    color: #000;
    font-weight: normal;
}

.travel-section .date {
    font-weight: bold;
    color: #555;
}

.travel-section p {
    color: #666;
    line-height: 1.5;
}

/* ===== GALLERY ===== */
.gallery-grid-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.gallery-grid img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
}

.gallery-lightbox-controls {
    position: absolute;
    top: 50%;
    width: 95%;
    display: flex;
    justify-content: space-between;
    color:aqua;
    font-size: 3em;
    padding: 0 20px;
    transform: translateY(-50%);
    user-select: none;
    cursor: pointer;
	
	
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: aqua;
    font-size: 5em;
    cursor: pointer;
}

/* ===== CONTACT ===== */
.contact-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-left, .contact-right {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-left p {
    line-height: 1.6;
}

.contact-left .info div {
    margin-bottom: 10px;
}

.contact-right form input,
.contact-right form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 1em;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
	background-color: deeppink;
	color: #fff;
}

.contact-right button {
    padding: 12px;
    background-color: #333;
    color: #fff;
    border: none;
    font-size: 1em;
    cursor: pointer;
    border-radius: 4px;
}

.contact-right button:hover {
    background-color: #555;
}

.contact-message {
    margin-bottom: 15px;
    color: green;
}

.contact-error {
    margin-bottom: 15px;
    color: red;
}

#send-btn {
    background-color: darkorange;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#send-btn:hover {
    background-color: orangered;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .gallery-grid img {
        width: 180px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .home-content {
        flex-direction: column;
    }

    .gallery-grid {
        gap: 10px;
    }

    .gallery-grid img {
        width: calc(50% - 10px);
        height: auto;
    }

    .contact-container {
        flex-direction: column;
    }

    .navbar ul {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid img {
        width: calc(50% - 8px);
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-content .copyright {
    font-size: 18px;
    color: #39ff14;
    font-weight: bold;
}

.sponsors {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.sponsor-logo {
    width: 90px;
    height: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .footer-content .copyright {
        font-size: 38px;
    }
}


/* Back To Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 10px;
    display: none; /* hidden until scroll */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#back-to-top svg {
    display: block;
}

#back-to-top.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#back-to-top.hide {
    opacity: 0;
    transform: translateY(20px);
}

