/* --- Header Components --- */
.site-header {
    background-color: rgba(253, 250, 245, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.site-header-menu {
    background: transparent;
    border: none;
    padding: 0;
    z-index: 2001;
    cursor: pointer;
}

.site-header-menu-bar {
    background-color: var(--dark-grey-brown);
    border-radius: 10px;
    transition: all 0.3s linear;
}

.menu-open .site-header-menu-bar:nth-child(1) {
    transform: rotate(45deg);
}

.menu-open .site-header-menu-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.menu-open .site-header-menu-bar:nth-child(3) {
    transform: rotate(-45deg);
}

.site-header-button {
    font-family: var(--font-main), sans-serif;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: var(--dark-grey-brown);
    transition: color 0.3s ease;
}

.site-header-button:hover {
    color: var(--pastel-red);
}

.site-header-button[href="#subscribe"] {
    background-color: var(--pastel-red);
    border-radius: 50px;
    padding: 10px 20px;
    color: var(--light-yellow);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.site-header-button[href="#subscribe"]:hover {
    background-color: var(--grey-azure);
    transform: translateY(-2px);
}

.privacy-policy-body .site-header-buttons,
.terms-body .site-header-buttons{
    display: flex !important;
    width: auto !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
}

.privacy-policy-body .site-footer-links,
.terms-body .site-footer-links{
    display: none !important;
}

.back-index-button {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-grey-brown);
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 8px 12px;
    white-space: nowrap;
}

.back-index-button:hover {
    color: var(--grey-azure);
    transform: translateX(-5px);
}

/* --- Global Components --- */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: clamp(12px, 2vh, 18px) clamp(24px, 4vw, 36px);
    text-decoration: none;
    font-family: var(--font-main), sans-serif;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: var(--light-yellow);
    color: var(--dark-grey-brown);
}

.btn-primary:hover {
    background-color: var(--pastel-red);
    color: var(--light-yellow);
}

.btn-green-color {
    color: var(--grey-green);
}

.section-title {
    font-family: var(--font-main), sans-serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 2.8vw, 5rem);
    line-height: 1.15;
    color: var(--dark-grey-brown);
    text-align: center;
}

/* --- Hero Section Components --- */
.hero-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../img/heroBackground.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    transition: all 0.1s ease-out;
}

.hero-logo-img {
    width: clamp(90px, 15vw, 180px);
    height: auto;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-family: var(--font-main), sans-serif;
    font-weight: 500;
    font-size: clamp(2.1rem, 4vw, 8rem);
    line-height: 1.15;
    color: var(--dark-grey-brown);
    white-space: normal;
    margin: 0;
}

/* --- Intro Section Components --- */
.intro-lead {
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--dark-grey-brown);
    text-align: center;
}

.intro-title {
    font-family: var(--font-main), sans-serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 2.8vw, 5rem);
    line-height: 1.15;
    color: var(--dark-grey-brown);
    text-align: center;
}

.intro-note {
    font-weight: 400;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--dark-grey-brown);
    text-align: center;
}

.intro-collage-img {
    border-radius: 30px;
    filter: drop-shadow(0 10px 15px rgba(45, 36, 30, 0.1));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.intro-collage-img:hover {
    filter: drop-shadow(0 15px 25px rgba(45, 36, 30, 0.15));
    transform: scale(1.02);
}

/* --- Signature Method Components --- */
.signature-method-card {
    background: var(--light-red);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.signature-method-card:hover {
    transform: translateY(-10px);
}

.signature-method-card-icon {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.signature-method-card-title {
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--grey-azure);
    text-align: center;
}

.signature-method-card-text {
    font-weight: 500;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--grey-azure);
    text-align: center;
}

.signature-method-intro-title {
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 3rem);
    line-height: 1.15;
    color: var(--pastel-red);
    text-align: center;
}

.signature-method-intro-text {
    font-weight: 500;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--dark-grey-brown);
    text-align: left;
}

.skill-level-row {
    background: var(--cream-bg);
    border-radius: 20px;
}

.skill-level-row:hover {
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(45, 36, 30, 0.12);
    transform: scale(1.02);
}

.skill-levels-title {
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 3rem);
    line-height: 1.15;
    color: var(--grey-green);
    text-align: left;
}

.skill-level-number {
    display: inline-block;
    width: fit-content;
    border-radius: 20px;
    padding: 3px 32px;
    background-color: var(--grey-green);
    font-weight: 700;
    font-size: clamp(1.0rem, 2vw, 1.3rem);
    color: var(--light-yellow);
    text-align: center;
}

.skill-level-title {
    display: block;
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--grey-azure);
    text-align: center;
}

.skill-level-age {
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--grey-azure);
}

.skill-level-desc {
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    color: var(--grey-azure);
}

.skill-levels-note {
    width: 100%;
    font-size: clamp(1rem, 2vw, 1.4rem);
    line-height: 1.4;
    color: var(--dark-grey-brown);
    text-align: left;
}

/* --- Learning Packs Components --- */
.learning-packs-visual:hover {
    filter: drop-shadow(0 15px 25px rgba(45, 36, 30, 0.15));
    transform: scale(1.02);
}

.learning-packs-lead {
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 3rem);
    line-height: 1.3;
    color: var(--grey-green);
}

.learning-packs-body {
    font-weight: 500;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--dark-grey-brown);
}

.learning-packs-product-img {
    border-radius: 12px;
    filter: drop-shadow(0 20px 30px rgba(45, 36, 30, 0.15));
}

.learning-packs-icons {
    width: auto;
    height: clamp(40px, 6vw, 60px);
}

.learning-packs-buttons {
}

/* --- About Component Styles --- */
.about-profile-img {
    width: 100%;
    max-width: 300px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(45, 36, 30, 0.1);
}

.about-founder {
    text-align: center;
}

.about-founder-name {
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--dark-grey-brown);
}

.about-founder-role {
    font-weight: 500;
    font-size: clamp(0.7rem, 2vw, 1rem);
    color: var(--grey-green);
}

.about-text-paragraph {
    font-size: clamp(1.0rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: var(--dark-grey-brown);
}

.about-commitment {
    background-color: var(--light-green);
    border-radius: 40px;
}

.about-commitment-title {
    font-size: 2rem;
    color: var(--grey-green);
    text-align: center;
}

.about-commitment-paragraph {
    font-size: clamp(1.0rem, 2vw, 1.3rem);
    line-height: 1.7;
}

.about-commitment-list {
    list-style: none;
}

.about-commitment-row {
    font-size: clamp(1.0rem, 2vw, 1.3rem);
    color: var(--dark-grey-brown); /* inherited but explicit for clarity */
}

.about-commitment-row::before {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--dark-grey-brown);
    content: "•";
}

.about-commitment-world-icon:hover {
    transform: scale(1.05);
}

.about-commitment-footer {
    width: 100%;
    font-size: clamp(1.0rem, 2vw, 1.3rem);
}

/* --- Subscribe Section Components --- */
.subscribe-section {
    background-color: var(--light-red);
}

.subscribe-subtitle {
    font-weight: 600;
    font-size: clamp(1.1rem, 2vw, 3rem);
    color: var(--grey-azure);
    text-align: center;
    margin-bottom: clamp(28px, 5vw, 50px);
}

.subscribe-option {
    background: var(--light-yellow);
    border-radius: 18px;
    padding: 28px 24px 24px;
    box-shadow: 0 12px 30px rgba(45, 36, 30, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.subscribe-option:hover {
    box-shadow: 0 18px 36px rgba(45, 36, 30, 0.14);
    transform: translateY(-6px);
}

.subscribe-option-floating-badge {
    border-radius: 10px;
    padding: 9px 16px;
    background-color: var(--pastel-red);
    letter-spacing: 0.02em;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--light-yellow);
    text-align: center;
}

.subscribe-option-type-badge {
    border-radius: 10px;
    padding: 6px 14px;
    background-color: var(--light-red);
    font-weight: 700;
    font-size: 1rem;
    color: var(--pastel-red);
    text-align: center;
}

.subscribe-option-desc {
    font-size: clamp(1.0rem, 2vw, 1.1rem);
    line-height: 1.5;
    color: var(--dark-grey-brown);
    text-align: center;
}

.subscribe-option-title {
    font-weight: 700;
    font-size: clamp(1.1rem, 1.9vw, 1.4rem);
    line-height: 1.24;
    color: var(--dark-grey-brown);
    text-align: center;
}

.subscribe-option-features {
    list-style: none;
}

.subscribe-option-feature {
    font-size: clamp(1.0rem, 2vw, 1.1rem);
    line-height: 1.44;
    color: var(--dark-grey-brown);
}

.subscribe-option-feature::before {
    font-weight: 700;
    color: var(--dark-grey-brown);
    content: "\2022";
}

.subscribe-option-price {
    font-weight: 700;
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    color: var(--pastel-red);
    text-align: center;
}

.subscribe-option-btn {
    border-radius: 999px;
    padding: 14px 20px;
    background-color: var(--light-red);
    text-decoration: none;
    font-weight: 700;
    color: var(--pastel-red);
    text-align: center;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.subscribe-option-btn:hover {
    background-color: var(--grey-azure);
    color: var(--light-yellow);
    transform: translateY(-2px);
}

.subscribe-option-coming-soon {
    border: none;
    border-radius: 999px;
    padding: 14px 20px;
    background: var(--light-grey);
    font-weight: 700;
    color: var(--dark-grey);
    cursor: not-allowed;
}

/* --- Contacts Components --- */
.contacts-section {
    background-color: var(--light-yellow);
}

.contacts-detail-title {
    letter-spacing: 2px;
    font-weight: 700;
    font-size: clamp(1.0rem, 2vw, 1.1rem);
    color: var(--grey-green);
    text-align: left;
    text-transform: uppercase;
}

.contacts-address {
    font-style: normal;
    font-size: clamp(1.0rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: var(--dark-grey-brown);
}

.contacts-social-link {
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1.0rem, 2vw, 1.1rem);
    color: var(--dark-grey-brown);
    transition: color 0.3s ease;
}

.contacts-social-link:hover {
    color: var(--pastel-red);
}

.contacts-email-link {
    border-bottom: 2px solid var(--pastel-red);
    padding-bottom: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--dark-grey-brown);
    transition: opacity 0.3s ease;
}

.contacts-email-link:hover {
    opacity: 0.7;
}

/* --- Footer Components --- */
.site-footer {
    background-color: var(--light-green);
}

.site-footer-company-reg {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--grey-green);
    text-align: center;
}

.site-footer-legal {
    font-size: 0.85rem;
    color: var(--dark-grey-brown);
}

.site-footer-link {
    text-decoration: none;
    color: var(--dark-grey-brown);
    transition: color 0.3s ease;
}

.site-footer-link:hover {
    color: var(--grey-azure);
    transform: scale(1.05);
}

.site-footer-link-separator {
    color: rgba(45, 36, 30, 0.3);
}

/* --- Privacy Policy Components --- */
/* --- Terms Components --- */
.privacy-section-title,
.terms-section-title {
    color: var(--grey-green);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    letter-spacing: 1px;
}

.privacy-header,
.privacy-row,
.terms-header,
.terms-row {
    line-height: 1.8;
    color: var(--dark-grey-brown);
    font-size: clamp(1.0rem, 2vw, 1.1rem);
}

.privacy-footer,
.terms-footer {
    line-height: 1.8;
    color: var(--dark-grey-brown);
    font-size: clamp(0.9rem, 2vw, 0.95rem);
}

/* --- Free Subscribe Components --- */
.free-subscribe-title {
    color: var(--pastel-red);
    font-size: clamp(1.7rem, 2.8vw, 5rem);
    text-align: center;
}

.free-subscribe-subtitle {
    color: var(--pastel-red);
    font-size: clamp(1.1rem, 2vw, 3rem);
    font-weight: 600;
    text-align: center;
}

.free-subscribe-text, .free-subscribe-note {
    color: var(--dark-grey-brown);
    line-height: 1.6;
    font-size: clamp(1.0rem, 2vw, 1.3rem);
    text-align: center;
}

.free-subscribe-input {
    padding: 14px 20px;
    border: 2px solid var(--grey-azure);
    border-radius: 10px; /* Pill shape to match your buttons */
    font-family: var(--font-main), sans-serif;
    transition: border-color 0.3s ease;
}

.free-subscribe-input::placeholder {
    font-family: var(--font-main), sans-serif; /* Your brand font */
    font-weight: 700;
    color: var(--grey-azure); /* Matching your color palette */
    opacity: 0.7; /* Optional: makes it look like a hint */
}

.free-subscribe-input:focus,
.free-subscribe-input:not(:placeholder-shown){
    outline: none;
    border-color: var(--pastel-red);
}

/* --- Custom Checkbox Skin --- */
.free-subscribe-accept-checkbox {
    /* Apply your specific request here */
    border: 2px solid var(--grey-azure);
    border-radius: 6px; /* 10px might be too round for a small box, 6px is a nice 'soft' square */
    background-color: var(--light-yellow);
    transition: all 0.2s ease;
}

/* Change look when checked */
.free-subscribe-accept-checkbox:checked {
    background-color: var(--pastel-red);
    border-color: var(--pastel-red);
}

/* Hover effect */
.free-subscribe-accept-checkbox:hover {
    border-color: var(--pastel-red);
}

.free-subscribe-accept-desc {
    font-size: 0.85rem;
    color: var(--dark-grey-brown);
}

.free-subscribe-accept-link {
    color: var(--grey-azure);
    text-decoration: underline;
}

/* Ensure the disabled button looks unclickable */
.free-subscribe-submit-btn.btn-disabled {
    background-color: var(--light-grey);
    border: var(--light-grey);
    cursor: not-allowed;
}

.free-subscribe-submit-btn:not(.btn-disabled) {
    background-color: var(--pastel-red);
    color: var(--light-yellow);
    border: var(--pastel-red);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.free-subscribe-submit-btn:not(.btn-disabled):hover {
    background-color: var(--grey-azure);
    transform: translateY(-2px);
}

/* --- Responsive Navigation --- */
@media (max-width: 992px) {
    .site-header-buttons {
        background-color: var(--light-yellow);
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .menu-open nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(10px) scale(1);
    }

    .back-index-button {
        font-size: 1.2rem;
        text-align: center;
    }

    .site-header-button {
        font-size: 1.2rem;
        text-align: right;
    }

    .site-header-button[href="#subscribe"] {
        width: 100%;
        min-width: auto;
        padding: 14px 24px;
        text-align: center;
        margin-top: 0.5rem;
    }
}
