/* IMPORT FONTS */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=Manrope:wght@400;500;600&display=swap');

/* GLOBAL SETTINGS */
:root {
    --primary: #1db954;
    --black: #111;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #fff;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Manrope', sans-serif; /* Default = subheading/body */
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* HEADER */
.header { 
    background: var(--white); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 1px solid var(--light-gray); 
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    height: 70px;
    position: relative;
}

.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
}

.logo { 
    height: 90px;
    width: auto;
    object-fit: contain;
}

.back-icon { 
    color: var(--black); 
    font-size: 20px;
    text-decoration: none;
    z-index: 10;
}

.spacer {
    width: 24px;
}

/* ABOUT PAGE LAYOUT */
.about-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* MAIN HEADING → SORA */
.about-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
}

/* SUBHEADING TEXT → MANROPE */
.mission-statement {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: var(--gray);
}

.about-details {
    margin-top: 40px;
}

.info-block {
    margin-bottom: 30px;
    padding: 20px;
}

/* SUBHEADINGS INSIDE BLOCKS → MANROPE */
.info-block h2,
.info-block h3 {
    font-family: 'Manrope', sans-serif;
}

.info-block i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-block.highlight {
    background: var(--light-gray);
    border-radius: 12px;
    border: 1px solid #eee;
}

/* FINAL TAGLINE → SORA (acts like heading) */
.final-tagline {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
}

.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.cta-btn:active {
    transform: scale(0.95);
}

/* IMAGE SLIDER */
.image-section { 
    position: relative; 
    height: 220px; 
    overflow: hidden;
}

.image-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 100%;
    scrollbar-width: none;
}

.image-slider::-webkit-scrollbar { display: none; }

.image-slider img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
}