﻿/* Set padding to keep content from hitting the edges */
*{
    font-family: "roca", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:18px;
    line-height:22px;
}

#AddHolder {
    display: block;
    padding: 0;
    margin: 0;
    line-height: 0; /* removes 1px vertical gaps */
}

.logo {
    max-width: 400px;
}
    .logo img {
        width: 295px;
        height: auto;
    }

footer p {
    margin-left: 114px;
    font-family: "effra", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom:40px;
    font-size:14px;
}
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

body, html {
    font-family: "roca", sans-serif;
    padding: 0;
    margin: 0;
    background-color: #282728;
}

.Effra Bold Italic {
    font-family: "effra", sans-serif;
    font-weight: 700;
    font-style: italic;
}
.Effra Bold {
    font-family: "effra", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.Effra Italic {
    font-family: "effra", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.Effra Regular {
    font-family: "effra", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.Effra Light Italic {
    font-family: "effra", sans-serif;
    font-weight: 300;
    font-style: italic;
}
.Effra Light {
    font-family: "effra", sans-serif;
    font-weight: 300;
    font-style: normal;
}


    .roca-thin {
    font-family: "roca", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roca-thin-italic {
    font-family: "roca", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roca-light {
    font-family: "roca", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roca-light-italic {
    font-family: "roca", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roca-regular {
    font-family: "roca", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roca-regular-italic {
    font-family: "roca", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roca-bold {
    font-family: "roca", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roca-bold-italic {
    font-family: "roca", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roca-black {
    font-family: "roca", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.roca-black-italic {
    font-family: "roca", sans-serif;
    font-weight: 800;
    font-style: italic;
}


.WhiteTxt {
    color:white;
}
.italicWord {
    font-style: italic;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-family: inherit;
}

/* Example page content container (adjust max-width to match your site) */
.page-content {
    max-width: 1080px; /* set to whatever your content width is */
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* important so .friendsNav can be positioned relative to it */
}


#AddHolder {
    padding: 0;
    max-width: 1080px;
    height: auto;
    position: relative;
    display: block;
    align-items: center;
    margin: 0 auto; /* centers horizontally */
}

#friendsMenu {
    max-width: 1080px;
    height: auto;
    position: absolute; /* changed from relative */
    display: flex;
    align-items: center;
    background-color:#ffffff;
    width:100%;
    top: 30px; /* move it down 60px, overlapping below */
    z-index: 10; /* ensure it stays on top */
}

.FMFContainer {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    background-color:white;
}


/* Main nav container */
.friendsNav {
    position: relative; /* normal flow, follows AddHolder */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px;
    max-width: 1080px;
    z-index: 1000;
    margin-left:18px;
    height:34px;
}

    /* Group left nav items */
    .friendsNav .nav-left {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-left: 96px;
    }

    .nav-left {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    /* Base link style */
.friendsNav .nav-item {
    color: #000;
    text-decoration: none;
    font-family: Effra;
    font-weight:700;
    font-size:16px;
    white-space: nowrap; /* prevent wrapping */
    position: relative;
    transition: color 0.15s ease;
    cursor:pointer;
}

        /* Hover / active states */
        .friendsNav .nav-item:hover {
            color:#de5410;
        }

        .friendsNav .nav-item.active {
            color: #de5410;
        }

    /* Dropdown wrapper */
    .friendsNav .dropdown {
        position: relative;
    }

.friendsNav .dropdown-toggle::after {
    content: "";
    display: inline-block;
    position:relative;
    top:2px;
    width: 11px; /* your image width */
    height: 7px; /* your image height */
    margin-left: 0.5em;
    vertical-align: 0.15em;
    background-image: url('/images/nav-down.png'); /* update path if needed */
    background-size: 11px 7px; /* ensure correct scaling */
    background-repeat: no-repeat;
    background-position: center;
    border: none; /* remove old arrow borders */
}

    /* Dropdown menu */
.friendsNav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 6px;
    min-width: 140px;
    z-index: 100;
}

        /* Invisible bridge to prevent gap issues */
        .friendsNav .dropdown-menu::before {
            content: "";
            position: absolute;
            top: -6px;
            left: 0;
            right: 0;
            height: 6px;
        }

    .friendsNav .dropdown-menu a {
        display: block;
        padding: 8px 12px;
        color: #000;
        text-decoration: none;
        white-space: nowrap;
        font-family: Effra;
        font-weight: 700;
        font-size: 16px;
    }

            .friendsNav .dropdown-menu a:hover {
                color: #ff7a00;
                background: rgba(0, 0, 0, 0.04);
            }

    /* Show dropdown on hover */
    .friendsNav .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Right side (login partial) */
.friendsNav .nav-right {
    margin-left: auto !important;
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
}

.nav-right {
    margin-left: auto; /* This pushes it to the right */
}

    .big-nav-item {
        max-width: 100px;
    }
.nav-link {
    font-family: Effra;
    font-weight: 700;
    font-size: 16px;
}


.sub-nav {
    position: absolute;
    display: none;
    max-width: 560px;
    margin-left:-280px;
}

    .sub-nav button {
        background-color: transparent;
        color: #fff;
        border: 1px solid #fff;
        padding: 6px 12px;
        max-height: 34px;
        min-height: 34px;
        margin-right: 1px;
        margin-top: 7px;
        font-family: Effra;
        font-weight: 700;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        z-index: 10;
        white-space: nowrap;
    }

        .sub-nav button:hover {
            background: #ffffff;
            color: #de5410;
        }


        .sub-nav button.active {
            background: #ffffff;
            color: #de5410;
        }

.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Nudge text down slightly */
    line-height: 52px;
    letter-spacing:-0.5px;
    padding-top: 6px;
    background-color: #000;
    color: #fff;
    font-size: 28px;
    font-style: italic;
    font-weight: 600;
    height: 52px;
    width: 228px;
    border: solid 1px #d700c9;
    border-radius: 26px;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 40px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }



#showAd {
    background-image: url('/images/up-arrow.png');
    background-repeat: no-repeat;
    width: 24px;
    height: 15px;
    position:absolute;
    top: -20px;
    left: calc(100% - 75px);
    cursor: pointer;
    z-index: 20;
    display:none;
}


#Step1 {
    background-image: url('/images/Hero-1-Boy.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    width: 100%;
    max-width: 1080px;
    aspect-ratio: 1080 / 644.4; /* keeps height proportional to width */

    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-right: 30px;
    box-sizing: border-box;
}

#heroLeft {
    position:absolute;
    top:120px;
    margin-left: 114px; /* small space on left */
    z-index: 1;
    max-width:330px;
}
#HeroLine1{
    margin-bottom:22px;
    letter-spacing:-.3px;
}
    #HeroLine1 .italicWord {
        letter-spacing: -.3px;
    }

#HeroSubTxt .smallerTxt {
    letter-spacing: -.5px;
}
/* Right-aligned quote slider */
.quote-slider {
    position: absolute;
    max-width: 260px;
    width: 260px;
    min-height: 340px;
    text-align: left;
    color: white;
    font-family: "roca", sans-serif;
    align-self: center;
    margin-right: 0;
    right: 100px;
    top: 150px;
    height: auto;
    max-height: 100%;
    overflow: visible;
}

.quote {
    padding-top:16px;
    font-style: normal;
    display: none;
    animation: fadeIn 1s ease-in-out;
    margin-left: auto;
    margin-right: auto;
}


.quote p {
    font-family: "effra", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    width:196px;
    margin-left:40px;
    margin-bottom:8px;
}

    .quote.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.open-quote,
.close-quote {
    width: 30px;
    height: 22px;
    background-size: contain;
    background-repeat: no-repeat;
}

.open-quote {
/*    float: left;
    margin-left: -10px;
*/    
background-image: url('/images/Open-Quote.png');
    background-size:contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 22px;
}

.close-quote {
    background-image: url('/images/Close-Quote.png');
    background-size:contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 22px;
    right:20px;
    top:238px;
    position:absolute;
}

.next-button {
    position: relative;
    margin-top: 49px;
    left: 267px;
    width: 55px;
    height: 55px;
    background-image: url('/images/next-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    background-color: transparent;
    z-index:500;
}

.nextBtn {
    position: absolute;
    right:30px;
    top:255px;
    width: 55px;
    height: 55px;
    background-image: url('/images/next-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    background-color: transparent;
    z-index: 500;
}

#friendCast {
    position: relative;
    left: 30px;
    height:auto;
    width:540px;
    top:-40px;
}
/* Navigation dots */
.dot-navigation {
    position: absolute;
    bottom: 20px;
    margin-left: 40px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot:hover {
        background-color: rgba(255, 255, 255, 0.7);
        transform: scale(1.1);
    }

    .dot.active {
        background-color: white;
        transform: scale(1.2);
    }

.next-button {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background-image: url('../images/next-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
    background-color: transparent;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.charImgHolder{
    width:174px;
    height:208px;
}

.charImgHolder img {
    background-size:contain;
}
.characterContainer {
    max-width: 1080px;
    background-color: transparent;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center; /* center the group */
    align-items: center;
    margin-top: -160px;
}

.characterGroup {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-left:104px;
    flex-wrap: wrap; /* for responsiveness */
    gap: 0; /* 👈 removes space between the yellow boxes */
}

#characterHolder,
#characterComing {
    display: flex;
    justify-content: center;
    align-items: stretch;
    text-align: center;
    padding: 20px;
    padding-left:0px;
    margin: 0; /* 👈 ensure no extra margin between them */
    gap: 0; /* 👈 make inner items flush if needed */
}

/* Each character column */
.character {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* space between image and button */
    min-height: auto; /* ensure uniform height so buttons align */
    box-sizing: border-box;
    vertical-align:top;
}

    /* Images */
    .character img {
        max-width: 100%;
        height: auto;
        transition: transform 0.3s ease;
        cursor: pointer;
        
    }

        .character img:hover {
            transform: scale(1.05);
        }

/* Pill button (link or button) */
.character-btn {
    display:flex;
    background-color: #000;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: none;
    width: 115px;
    min-height: 28px;
    max-height: 28px;
    height: 28px;
    letter-spacing: -.3px;
    border-radius: 14px;
    border: solid 1px #d700c9;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    line-height: 28px;
    padding-top:3px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top:10px;
}

#boggsExpandBtn{
    margin-left:-6px;
}

.character-btn:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
    border: none;
}

.character-btn:hover {
    background-color: #c200b6;
    transform: scale(1.05);
}

/* Optional: responsiveness */
@media (max-width: 768px) {
    #characterHolder, #characterComing {
        flex-direction: column;
        align-items: center;
    }
}

img[data-hover]:hover {
    content: attr(data-hover);
}

.CharacterDetail-container {
    display: none;
    flex-direction: column;
    padding-top: 30px;
    max-width: 1080px;
    background-color: white;
    margin: 0 auto 20px auto;
}

.CharacterDetails-Top {
    display: flex;
    flex-direction: row;
    gap: 0;
    flex-wrap: nowrap;
}

.CharacterDetails-left {
    width: 300px;
    min-width: 300px;
    margin-left: 114px;
    display: block;
}

.CharacterDetails-Right {
    position: relative;
    flex: 1;
    padding-left: 35px;
    padding-right: 80px;
}

    .CharacterDetails-Right::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 100%;
        background-color: #000000;
    }

.addtocartHolder {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}



.CharacterDetailsName {
    margin-top: 10px;
    margin-bottom: 10px;
}

.CharacterDetailsTitle {
    font-size: 27px;
    font-family: roca;
    font-weight: 100;
    letter-spacing:-0.7px;
    font-style: italic;
}


.CharacterDetails-Bio {
    padding-top: 16px;
    padding-bottom: 8px;
    font-weight: 100;
}
.CharacterDetails-Hobbies {
    padding-bottom: 8px;
    font-weight: 100;
}
.CharacterDetails-Looking {
    padding-bottom: 30px;
    font-weight: 100;
}

.CharacterDetails-Text {
    padding-bottom: 12px;
    font-weight: 100;
}


#FAQ {
    max-width: 1080px;
    min-height:1000px;
    background-image: url('/images/FAQ-girl.png');
    background-repeat: no-repeat;
    background-size: 650px auto; /* image never resizes */
    background-position: left calc(100% - 0px); /* explicit bottom anchor */
    background-origin: border-box; /* prevents accordion height from affecting it */
    background-color: #d40f1a;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
    background: transparent; /* or white */
    padding: 12px 0; /* gives room for rounded corners */
}
.accordion-container {
    width:560px;
    margin-bottom:40px;
}

.accordion-item {
    background: #fff;
    border-radius: 26px;
    min-height:60px;
    margin-bottom: 4px;
    overflow: hidden; /* keep this ON */
}
    .accordion-item:last-child {
        border-bottom: 1px solid #ddd; /* restore final border */
    }

    /* Rounded corners ONLY on the top and bottom of the whole group */
    .accordion-item:first-child {
        border-top-left-radius: 26px;
        border-top-right-radius: 26px;
    }

    .accordion-item:last-child {
        border-bottom-left-radius: 26px;
        border-bottom-right-radius: 26px;
    }



.accordion-question {
    background: #fff;
    padding-left: 25px;
    padding-top: 20px;
    padding-bottom:6px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

    .accordion-question::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        margin-top:6px;
        width: 22px;
        height: 13px;
        background-image: url('/images/FAQ-Down-Arrow.png');
        background-size: contain;
        background-repeat: no-repeat;
        transform: translateY(-50%); /* vertically centers it */
        transition: transform 0.3s ease;
    }

    .accordion-question.active::after {
        transform: translateY(-50%) rotate(180deg);
    }

.accordion-answer {
    display: none;
    padding-left: 25px;
    padding-right: 50px;
    padding-top: 0px;
    padding-bottom: 20px;
    background: #fff;
    font-weight:100;
}
    .accordion-answer p {
        margin-bottom: 4px;
        font-weight: 100;
    }

.faq-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1080px;
}

#faqLeft {
    width: 240px;
    margin-left: 114px;
    margin-top: 80px;
    font-family: Effra;
    text-wrap: pretty;
}

    #faqLeft a,
    #faqLeft a:hover,
    #faqLeft a:active,
    #faqLeft a:visited {
        font-family: Effra;
        color: white;
        font-weight: 300;
        text-decoration: underline;
        text-underline-offset: 4px; /* increase this for more space */
    }



    #faqLeft p {
        font-family: Effra;
        margin: 0;
        margin-bottom: 8px;
        text-wrap: pretty;
    }

#faqRight {
    position: relative;
    width: 600px;
    margin-top:80px;
    padding-left: 72px; /* space for the line */
}

    #faqRight::before {
        content: "";
        position: absolute;
        top: 0;
        left: 10px; /* line starts 10px from the left of the right column */
        width: 2px; /* line thickness */
        height: 1px; /* full height of the column */
        background-color: transparent; /* matches accent color */
    }

#friendsMidLogo {
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    padding-top: 28px;
    padding-bottom: 60px;
    max-width:1080px;
    background-color:white;

}

    #friendsMidLogo img {
        width: 422px; /* Scale to 75% */
        height: auto; /* Keep aspect ratio */
        max-width: 422px; /* Prevent overflow */
    }

#HowItWorks {
    background: #fff;
    background-color: white;
    color: #000;
    padding: 60px 20px;
    padding-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}

.howItWorks-container {
    display:flex;
    flex-direction: column;
    padding-top: 30px;
    max-width: 1080px;
    background-color: white;
    margin: 0 auto 20px auto;
}

.howItWorks-Top {
    display: flex;
    flex-direction: row;
    gap: 0;
    flex-wrap: nowrap;
}

.howItWorks-left {
    width: 300px;
    margin-left: 114px;
    margin-top: 80px;
    font-family: Effra;
    text-wrap: pretty;
}

.howItWorks-right {
    position: relative;
    flex: 1;
    padding-left: 35px;
    padding-right: 90px;
    padding-top: 16px;
}
    .howItWorks-right p {
        font-weight: 100;
        margin-bottom: 8px;
        text-indent: 0;
    }

    .howItWorks-right sup {
        top: -10px;
    }

    /* vertical line to the left of right text */
    .howItWorks-right::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 100%;
        background-color: #000000;
    }

#HowItWorks h1 {
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1.1;
}

#HowItWorks .subhead {
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
}


.howItWorks-left h1 {
    margin-top: 16px;
}

.howItWorks-left p {
    font-family: effra;
    font-weight: 300;
    font-size: 18px;
    line-height: 21px;
    width: 249px;
    margin-bottom: 8px;
    padding-right: 20px;
}

.howItWorks-right ul {
    margin: 0;
    padding-left: 1.2em;
}

    .howItWorks-right ul li {
        margin: 6px 0;
        padding-left: 8px; /* adds space between bullet and text */
        font-weight: 100;
    }

    /* Ensure nested lists maintain proper alignment */
    .howItWorks-right p ul {
        padding-left: 1.2em;
    }

#HowItWorks .note {
    font-size: 14px;
    color: #333;
    font-style: italic;
}

.howItWorks-right h2 {
    color: #c200b6;
    font-size: 28px;
    line-height:32px;
    font-weight: 400;
    margin-bottom: 10px;
}

#HowItWorks h3 {
    color: #c200b6;
    font-size: 18px;
    font-weight: bold;
    margin-top: 25px;
}

#HowItWorks .highlight {
    color: #c200b6;
    font-weight: bold;
}

#HowItWorks .cta {
    display: inline-block;
    margin-top: 25px;
    border: 1px solid #c200b6;
    background-color: #000000;
    color: #fff;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s ease;
}

    #HowItWorks .cta:hover {
        background-color: #8a0055;
    }

#closingAdImg {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding-bottom:60px;
}

#closingAddHeader
{
    margin-top:90px;
    position:relative;
}


#closingAdImg img {
    width: 100%;
    height: auto;
    display: block;
}

#closingAd {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left:114px;
    box-sizing: border-box;
}


.closingAd-container {
    display: flex;
    position:relative;
    margin-top:-160px;
}

#closingAdLeft {
    min-width: 295px;
    max-width: 426px;
    padding-left: 114px;
    display: inline-block;
    vertical-align: top;
}

    #closingAdLeft h2 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 400;
        margin-bottom: 10px;
    }

    #closingAdLeft p {
        font-size: 22px;
        line-height: 26px;
        color: #000;
        font-weight: 300;
        letter-spacing: .5px;
    }

#closingAdRight {
    position: relative;
    margin-top: 30px;
    display: inline-block;
    vertical-align: top;
}


.subtitle {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
    color: #000;
    padding-right: 20px;
    font-weight: 400;
}

.clearpadMarg {
padding:0;
margin:0;
}

.smallerTxt {
    font-size: 22px;
    line-height: 26px;
    color: #000;
    font-weight: 300;
    letter-spacing: .5px;
    padding-right: 80px;
    padding-right: 80px;
}

.SectionHeads {
    font-family: "roca", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 73px;
    line-height: 62px;
    letter-spacing:-3px;
    margin-bottom:20px;
}


@media (max-width: 768px) {
    .howItWorks-container {
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }
}
