@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle, #0a0a0a, #020202);
    color: white;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
    overflow: hidden;
}

.info-body {
    background: radial-gradient(circle, #0a273a, #020202);
    color: white;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    text-align: center;
    padding-top: 60px;
    overflow-y: auto;
}

h1 {
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 5px;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 20px;
    flex: 1;
}

.inner-container {
    background-color: rgba(2, 2, 2, 0.3);
    width: 80%;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    margin: 20px auto 5%;
    min-height: 50vh;
}

.logo {
    max-width: 50%;
    height: auto;
}

.logo-info {
    max-width: 20%;
    height: auto;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 15px;
    flex-wrap: nowrap;
}

.buttons.navbar {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    top: 0;
}


.button {
    flex-grow: 1;
    flex-basis: calc(25% - 15px);
    min-width: 350px;
    padding: 12px 15px;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: none;
    border: 2px solid transparent;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    transform: skewX(-15deg);
    text-align: center;
    white-space: nowrap;
    word-wrap: normal;
    line-height: 1.5;
    position: relative;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #43b1f2;
    clip-path: polygon(0% 10%, 10% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0% 90%);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.button:hover::before {
    opacity: 1;
    box-shadow: 0 0 10px #43b1f2;
}

.button:hover {
    color: #43b1f2;
    transform: skewX(-15deg) scale(1.1);
}

.button:active {
    transform: skewX(-15deg) scale(0.95);
    box-shadow: 0 0 5px #43b1f2;
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

@media (max-width: 900px) {
    .buttons.navbar {
        gap: 10px; /* Adjust gap to fit more buttons */
        flex-wrap: wrap;
    }

    .buttons {
        flex-wrap: wrap;
    }

    .button {
        flex-basis: calc(50% - 10px); /* Make buttons 50% width on medium screens */
        font-size: 0.9rem; /* Slightly smaller font for smaller screens */
        min-width: 150px; /* Ensure buttons don't get too small */
    }
}

@media (max-width: 600px) {
    .buttons.navbar {
        gap: 5px; /* Further reduce gap */
    }

    .button {
        flex-basis: 100%; /* Make buttons take full width on very small screens */
        font-size: 0.8rem; /* Smaller font for better fit */
        min-width: 100%; /* Ensure buttons fit within the screen */
    }
}

.footer {
    background-color: #020202;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
    background-color: #020202;
    color: white;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
}

.slideshow-container {
    position: relative;
    width: 60%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(2, 2, 2, 0.3);
    width: 80%;
    border-radius: 15px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 5%;
}

.slideshow-h1 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.slides {
    display: none;
    width: 100%;
}

img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.fade {
    animation: fade 1s ease-in-out;
}
@keyframes fade {
    from { opacity: 0.4; } to { opacity: 1; }
}

.contact-ref {
    color: #43b1f2;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.contact-ref::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #43b1f2;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.contact-ref:hover {
    color: #68d3ff;
}

.contact-ref:hover::before {
    transform: scaleX(1);
}