@font-face { 
    font-family: 'Sinoreta'; 
    src: url("../fonts/CRONDE.otf"); 
}
@font-face { 
    font-family: 'Lostar'; 
    src: url("../fonts/Lostar.ttf"); 
}
@font-face { 
    font-family: 'CRONDE'; 
    src: url("../fonts/CRONDE.otf"); 
}

/* 2. VARIABLES */
body {
    background-color:#fdf6cc;
    margin: 0;
    overflow-x: hidden;
}

/* 2. NAVIGATION BAR */
.navbar {
    position: relative;
    width: 100vw;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.navbar::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 69px;
    background-color: rgba(242, 215, 80, 0.67);
    z-index: 1;
}

.navbar a {
    font-family: 'Sinoreta', cursive;
    text-decoration: none;
    color: #d97d54;
    font-size: 2.5rem;
    z-index: 2;
}

.nav-frame {
    width: 80px;
    height: 70px;
    z-index: 2;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.frame-1 { background-image: url("../images/muziek 3.jpg"); }
.frame-2 { background-image: url("../images/muziek 1.jpg"); }
.frame-3 { background-image: url("../images/muziek 2.jpg"); }
.frame-4 { background-image: url("../images/muziek 1.jpg"); }
.frame-5 { background-image: url("../images/muziek 3.jpg"); }

/* 4. MAIN TITLE */
.main-title h1 {
    font-family: 'Lostar', sans-serif !important;
    text-align: center;
    font-size: 8rem;
    color: #d97d54;
    letter-spacing: 1.5rem;
    margin: -10px 0 10px 0;
    font-weight: normal;
}

/* 5. VINYL HOVER EFFECT (No Spin) */
.vinyl-record {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    z-index: 5;
    
    /* Initial Sticking Out Position */
    top: -150px; 
    left: 35px; 
    
    background: radial-gradient(circle, #F2D750 25%, #111 26%);
    
    /* Transition for sliding out */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Slides up and rotates slightly when photo-wrapper is hovered */
.photo-wrapper-large:hover .vinyl-record {
    transform: translateY(-60px) rotate(15deg);
}

/* 6. GRID LAYOUT */
.details-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    padding: 20px 10% 80px;
    align-items: flex-start;
}

/* 7. PHOTO BOX (Left) */
.photo-wrapper-large {
    position: relative;
    width: 450px;
    height: 450px;
    margin-top: 120px;
}

.image-box-large {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-size: cover;
    background-position: center;
    box-shadow: 10px 10px 0px #fdf6cc;
    background-image: url("../images/details foto.JPG");
}

/* 8. TEXT BUBBLE (Right) */
.info-bubble {
    background-color: rgba(242, 215, 80, 0.67);
    padding: 20px 45px 45px 45px;
    border-radius: 50px;
    min-height: 500px;
}

.details-header {
    font-family: 'Lostar', sans-serif !important;
    color:  #9E462E !important;
    font-size: 4.5rem;
    margin-top: 10px; /* Moves text down slightly */
    margin-bottom: 5px;
    line-height: 1;
}

.cronde-text {
    font-family: 'CRONDE', sans-serif !important;
    color:  #9E462E;
    font-size: 1.6rem;
    line-height: 1.35;
    margin-bottom: 20px;
}

/* 9. SETTINGS CIRCLE */
.settings-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 150px;
    height: 150px;
    background-color: rgba(242, 215, 80, 0.67);
    border-radius: 50%;
    color: #9E462E;
    font-family: 'Sinoreta', cursive;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 15px;
    float: right;
    margin-top: 50px; 
    position: relative;
    z-index: 15;
    transition: transform 0.3s ease-in-out;
}

.settings-circle:hover { transform: scale(1.15); }

/* 10. FOOTER */
.cassette-footer {
    display: flex;
    justify-content: center;
    padding: 60px 0 100px;
}

.cassette {
    width: 280px;
    height: 180px;
    background-image: url("../images/cassette.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}