/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #f4f4f4;
    background-color: #121212;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Landing Page Styles --- */
.landing-page-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    background-image: url('images/IMG_0955.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Watermark overlay effect */
.landing-page-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the opacity (0.7) for the watermark effect */
    z-index: 1;
}

.landing-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.landing-logo {
    width: 250px;
    height: auto;
    margin-bottom: 30px;
    background-color: #000000;
    padding: 15px;
    border-radius: 50%;
}

.enter-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ff69b4;
    color: #000;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.enter-button:hover {
    background: #00bfff;
}

/* --- Header & Navigation --- */
.header {
    background: #000;
    color: #fff;
    padding: 1em 0;
    border-bottom: 2px solid #333;
}

.header .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-link {
    display: none;
}

.navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.navigation ul li {
    margin-left: 20px;
}

.navigation ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navigation ul li a:hover {
    color: #aaa;
}

.navigation ul li a .fab {
    font-size: 1.2em;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 75vh;
    background-image: url("Images/bunker_header.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-logo {
    height: 180px; 
    width: 180px; 
    border-radius: 50%;
    margin-bottom: 25px;
    background-color: #000000;
    padding: 10px;
}

.hero-section h1 {
    font-family: 'Mr Dafoe', cursive;
    font-size: 5em;
    margin-bottom: 0.25em;
    font-weight: normal;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 2em;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #ccc;
}


/* --- Content Section --- */
.content-section {
    padding: 80px 0;
    background: #121212;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

.content-section p {
    max-width: 800px;
    margin: 0 auto;
}

/* --- About Page --- */
.team-member {
    text-align: center;
    margin-bottom: 2em; /* Adds space below each team member */
}

.team-photo {
    width: 200px;
    height: 220px; /* Slightly taller to fit the hat */
    object-fit: cover;
    object-position: top; /* Ensures the top of the image (the hat) is visible */
    border-radius: 50%; /* Makes the image a circle */
    margin-bottom: 15px;
    border: 2px solid #ff69b4;
}

.team-member h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.team-member p {
    color: #aaa;
    font-size: 1em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.team-heading {
    margin-top: 4em;
    margin-bottom: 1em;
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; 
    margin-top: 50px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    display: block;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

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

/* --- Footer --- */
.footer {
    background: #000;
    text-align: center;
    padding: 2em 0;
    border-top: 2px solid #333;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .header .container {
        justify-content: center;
    }
    
    .hero-logo {
        height: 120px;
        width: 120px;
        margin-bottom: 20px;
    }

    .hero-section h1 {
        font-size: 3em;
    }

    .navigation ul li {
        margin: 0 10px;
    }
    
    .slant-line {
        width: 150px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Modal (Lightbox) Styles --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top of everything */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (The Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* The Close Button */
.close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
}

/* =========================
   Contact Section
   ========================= */

.contact-section {
    padding: 80px 20px;
}

.contact-intro {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
    line-height: 1.6;
}

.contact-form {
    max-width: 650px;
    margin: 0 auto;
}

.form-row {
    display: block;
}

.form-group {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 22px;
}

.form-group label {
    text-align: right;
    font-weight: 400;
    margin: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fff;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.form-group input {
    height: 42px;
}

.form-group textarea {
    min-height: 170px;
    resize: vertical;
    vertical-align: top;
}

.form-group textarea::placeholder {
    color: #777;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

/* Message label aligns with top of textarea */
.form-group.message-group {
    align-items: start;
}

.form-group.message-group label {
    padding-top: 12px;
}

/* Spam protection */
.form-hidden {
    display: none;
}

/* Submit button */
.contact-submit {
    display: block;
    width: 220px;
    margin: 30px auto 0;
    padding: 14px 25px;
    border: 1px solid #fff;
    border-radius: 2px;
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-submit:hover {
    background: #fff;
    color: #111;
}

/* Mobile */
@media (max-width: 600px) {

    /* Hero */
     .hero-section {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 2;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
}

    /* Keep silver lines subtle on mobile */
    .slant-line {
        width: 55px;
        opacity: 0.00;
    }

    /* Only keep the outer silver lines */
    .left-2,
    .left-3,
    .right-2,
    .right-3 {
        display: none;
    }

    .left-1 {
        left: -180px;
    }

    .right-1 {
        right: -180px;
    }

    /* Contact */
    .contact-section {
        padding: 60px 20px;
    }

    .contact-form {
        max-width: 100%;
    }

    .form-group {
        grid-template-columns: 1fr;
        row-gap: 8px;
        margin-bottom: 20px;
    }

    .form-group label {
        text-align: left;
    }

    .form-group.message-group label {
        padding-top: 0;
    }

    .contact-submit {
        width: 100%;
        max-width: 250px;
    }
}