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

body {
    font-family: 'Courier New', 'Monaco', 'Lucida Console', monospace;
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 120vh;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: 2 / 1;
    width: 100%;
    max-width: none;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}


.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
    object-position: center;   
    filter: grayscale(0%) contrast(120%) brightness(90%);
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 2px);
    background-size: 3px 3px;
    pointer-events: none;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.9)
    );
    z-index: -2;
}

#wave-sound {
    position: absolute;
    top: 0;
    right: 0;
    height: 5vh;
    width: 5vh;
    cursor: pointer;
    transition: transform 0.4s ease, opacity 0.4s ease-in-out;
}

#wave-sound:hover {
    transform: scale(1.1);
}


#ship {
    position: fixed;
    top: 0;
    left: 0;
    height: 5vh;
    width: 5vh;
    cursor: pointer;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #ffffff;
    z-index: 2;
    padding: 2rem;
    font-family: 'Courier New', monospace;
    margin-top: -40vh;
    margin-left: 6vh;
}

.hero-border {
    padding: 4rem 3rem;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-family: 'Courier New', monospace;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 2rem;
    color: #cdd3ec;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
}

.hero-nav {
    justify-content: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.hero-nav-button {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    box-shadow: 3px 3px 0px rgba(255, 255, 255, 0.3);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.3em;
    backdrop-filter: blur(5px);
}

.hero-nav-button:hover {
    transform: translate(-5px, -5px);
    box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    color: #000000
}

.explore-button {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    box-shadow: 3px 3px 0px rgba(255, 255, 255, 0.3);
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.4em;
    backdrop-filter: blur(5px);
}

.explore-button:hover {
    transform: translate(-5px, -5px);
    box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.9);
    color: #000000
}


/*about section*/
.container {
    max-width: 1200px;
    margin: 0 auto;      /* centers the entire block */
    padding: 0 2rem;     /* small safety padding on mobile */
}
.about {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Courier New', monospace;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: bold;
}

.about-text .lead {
    font-size: 1.3rem;
    color: #000000;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333333;
    font-family: 'Courier New', monospace;
}

.divider {
    display: flex;
    align-items: center;
    align-content: center;
    margin: 2rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        #000000 0px,
        #000000 10px,
        transparent 10px,
        transparent 20px
    );
    margin: 0 1rem;
}

.divider span {
    color: #000000;
    font-size: 1.5rem;
    padding: 0 1rem;
    font-family: 'Courier New', monospace;
}

.photo-frame {
    position: relative;
    padding: 20px;
    background: #efcece;
    box-shadow: 
        0 0 0 3px #000000,
        0 0 0 6px #ffffff,
        0 0 0 9px #000000;
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.photo-frame:hover {
    transform: rotate(0deg) scale(1.1)
}

.photo-frame img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.2);
}
