/* Simple Fullscreen Layout */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: white;
}

.no-scroll {
    overflow: hidden;
}

.bg-image {
    /* The image used */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('hero_ship_repair.png');

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* Flexbox to center content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 1000px;
    background: rgba(15, 23, 42, 0.6);
    /* Slightly darker for better contrast */
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    margin: auto;
    width: 90%;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 180px;
    height: auto;
    display: inline-block;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

p.tagline {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.btn-link {
    display: inline-block;
    padding: 12px 30px;
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    border: 1px solid #D4AF37;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-link:hover {
    background: #D4AF37;
    color: #0F172A;
    transform: translateY(-2px);
}

/* Contact Offices Layout */
.offices-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
}

.office-box {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease;
}

.office-box:hover {
    background: rgba(255, 255, 255, 0.08);
}

.office-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    /* Gold */
}

.office-title .flag {
    font-size: 1.4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    /* Align icon to top of text */
    gap: 12px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #e2e8f0;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #D4AF37;
    font-size: 1rem;
    margin-top: 4px;
    /* Slight visual adjustment */
}

.contact-item a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #D4AF37;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    /* Enable scrolling on mobile */
    .no-scroll {
        overflow-y: auto !important;
    }

    .bg-image {
        height: auto;
        min-height: 100vh;
        /* Ensure it covers at least the screen */
        padding: 40px 15px;
        /* Add padding for safe areas */
        justify-content: flex-start;
        /* Start content from top */
    }

    .container {
        padding: 2rem 1.5rem;
        width: 100%;
        margin: 20px 0;
    }

    .offices-container {
        flex-direction: column;
        gap: 20px;
    }

    .office-box {
        min-width: 100%;
        /* Full width on mobile */
    }

    h1 {
        font-size: 1.8rem;
        /* Smaller heading */
    }

    p.tagline {
        font-size: 1rem;
    }

    .btn-link {
        width: 100%;
        /* Full width button on mobile */
        text-align: center;
    }
}