@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    /* Enable Scroll */
}

/* Gradient Background - Fixed */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, #3a0000 0%, #000 100%);
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    /* Ensure visibility */
}

.logo {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* SCENE Container for Zooming */
.viewport {
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    position: relative;
    overflow: hidden;
}

.scene {
    width: 100%;
    height: 100%;
    position: relative;
    transform-origin: center center;
}

/* IMAGES LAYER */
.images-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.img-box {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Positions */
.pos-bird {
    top: 14%;
    left: 25%;
    width: 20%;
    height: 25%;
    z-index: 14;
}

.pos-island {
    top: 20%;
    left: 50%;
    width: 25%;
    height: 30%;
    z-index: 9;
}

.pos-wildlife {
    top: 12%;
    right: 0;
    width: 28%;
    height: 40%;
    z-index: 8;
}

.pos-bride {
    top: 36%;
    left: 0;
    width: 32%;
    height: 45%;
    z-index: 12;
}

.pos-swimmer {
    top: 64%;
    right: 5%;
    width: 25%;
    height: 30%;
    z-index: 12;
}

/* TEXT CONTENT CENTER */
/* TEXT CONTENT CENTER */
.content-center {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, 0%);
    /* Start slightly lower for Fade Up effect */
    text-align: center;
    z-index: 50;
    width: 100%;
    opacity: 0;
    /* Default Hidden */
    transition: opacity 2s ease, transform 2s ease;
}

.content-center.activeMainText {
    opacity: 1;
    transform: translate(-50%, -30%)
}

h1 {
    font-size: 8vw;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.content-center p {
    font-size: 16px;
    color: #ccc;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.5;
}

.arrow-down {
    margin-top: 40px;
    font-size: 24px;
    opacity: 0.7;
}

/* NEW CONTENT SECTION */
.content-section {
    position: relative;
    z-index: 20;
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    width: 100%;
    margin-top: 50px;
}

.grid-item {
    background: #111;
    height: 300px;
    border-radius: 8px;

}

.arrow-down img {
    margin-top: 40px;
    width: 10px;
}

.content-center h1 {
    font-family: var(--sst-heavy);
    font-size: 72px;
}


.content-center p {
    font-family: var(--sst-roman);
    color: #fff;

    margin-top: 20px;
}



/* Active State for Tour Focus */
.img-box.active {
    z-index: 50 !important;
}