@font-face {
    font-family: 'Pricedown';
    src: url('pricedown bl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    min-height: 100vh;
    font-family: 'Pricedown', sans-serif;
    background-color: #000;
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 13px 26px;
    background-color: transparent;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
}

.full-left {
    margin-left: -5vw;
    width: 50vw;
    position: relative;
    left: -5%;
}

.banner-text {
    color: white;
    font-size: 1.95rem;
    font-weight: normal;
    text-transform: uppercase;
    background-color: #003366;
    padding: 2.6px 13px;
    margin-right: 13px;
    text-decoration: none;
}

.subtitles {
    display: flex;
}

.subtitle {
    color: white;
    font-size: 1.56rem;
    text-decoration: none;
    margin-left: 26px;
}

.subtitle:hover {
    text-decoration: underline;
}

.content {
    padding: 120px 5% 60px;
    width: 90%;
    margin: 0 auto;
    color: #fff;
}

.photo-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.photo {
    width: 30%;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.photo:hover {
    transform: scale(1.02);
    border-color: #003366;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.photo-details {
    text-align: center;
}

.detail {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.detail i {
    margin-right: 10px;
    color: #003366;
}

.contact-icons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 5;
}

.contact-icons .icon {
    font-size: 20px;
    color: white;
}

.contact-icons .icon:hover {
    color: #003366;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .content {
        padding: 80px 5% 80px;
    }

    .photo-container {
        flex-direction: column;
        align-items: center;
    }

    .photo {
        width: 80%;
        margin-bottom: 20px;
    }

    .photo-details {
        text-align: center;
    }

    .contact-icons {
        flex-direction: row;
        gap: 15px;
    }

    .contact-icons .icon {
        font-size: 16px;
    }
}

.location-info {
    font-style: italic;
    color: #0055a4;
}
