/* ===========================
   CSS Reset & Base Styles
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: rgb(250, 43, 123);
    --dark-text: rgb(27, 27, 27);
    --white: rgb(255, 255, 255);
    --light-gray: rgb(245, 245, 245);
    --medium-gray: rgb(200, 200, 200);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ===========================
   Container & Layout
   =========================== */

.container {
    width: 100%;
    max-width: 984px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===========================
   Cookie Consent Banner
   =========================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-text);
    color: var(--white);
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 984px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
}

.btn-accept {
    background-color: var(--primary-pink);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-accept:hover {
    opacity: 0.9;
}

/* ===========================
   Header & Navigation
   =========================== */

.header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
    order: 2;
}

.logo a {
    display: block;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.nav-left {
    order: 1;
    justify-content: flex-end;
}

.nav-right {
    order: 3;
    justify-content: flex-start;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    order: 4;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text);
    padding: 0.5rem 0;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===========================
   Main Content
   =========================== */

.main-content {
    min-height: calc(100vh - 200px);
}

.hero-section {
    padding: 3rem 0;
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 2rem;
}

.main-column {
    max-width: 100%;
}

.main-column h1 {
    color: var(--primary-pink);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.skills-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.skills-list li {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.skills-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark-text);
    font-weight: bold;
}

.skills-list li strong {
    font-weight: 600;
    color: var(--dark-text);
}

.sidebar {
    position: relative;
}

.quote-box {
    background-color: var(--white);
    padding: 0;
    position: sticky;
    top: 100px;
}

.quote-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.quote-attribution {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.quote-conclusion {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.sidebar-heading {
    color: var(--primary-pink);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar-text {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.meet-amy-content {
    max-width: 800px;
    margin: 0 auto;
}

.meet-amy-content h1 {
    color: var(--primary-pink);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-paragraph {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.btn-cta {
    display: inline-block;
    background-color: var(--primary-pink);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: rgb(230, 30, 110);
    transform: translateY(-2px);
}

.skill-areas {
    margin: 3rem 0;
}

.skill-areas h2 {
    color: var(--primary-pink);
    margin-bottom: 2rem;
}

.skill-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.skill-item h3 {
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.skill-item p {
    margin-bottom: 0;
    line-height: 1.7;
}

.quote {
    background-color: var(--primary-pink);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    border-left: 4px solid var(--dark-text);
}

.quote p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.quote cite {
    font-size: 0.9rem;
    font-style: normal;
    opacity: 0.9;
}

.closing-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-top: 2rem;
}

.section {
    padding: 3rem 0;
    border-top: 1px solid var(--medium-gray);
}

/* ===========================
   Privacy Documents Page
   =========================== */

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h1 {
    color: var(--primary-pink);
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.document-card {
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.document-card h3 {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-download {
    display: inline-block;
    background-color: var(--primary-pink);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    align-self: center;
}

.btn-download:hover {
    background-color: rgb(230, 30, 110);
    transform: translateY(-2px);
}

/* ===========================
   Contact Us Page
   =========================== */

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h1 {
    color: var(--primary-pink);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 3rem;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details h2 {
    color: var(--primary-pink);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.contact-details .address {
    color: var(--dark-text);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.contact-details .email-link {
    color: var(--primary-pink);
    font-size: 1.125rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-details .email-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

/* ===========================
   Responsive Design
   =========================== */

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        order: 1;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .logo img {
        height: 60px;
        margin: 0 auto;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-left,
    .nav-right {
        width: 100%;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid var(--light-gray);
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .page-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        order: 2;
    }

    .main-column {
        order: 1;
    }

    .quote-box {
        position: static;
        padding: 1.5rem;
        background-color: var(--light-gray);
        border-radius: 8px;
    }

    .btn-cta {
        display: block;
        width: 100%;
    }

    .skill-item {
        padding: 1rem;
    }

    .quote {
        padding: 1.5rem;
    }

    .quote p {
        font-size: 1.125rem;
    }

    .meet-amy-content h1 {
        font-size: 1.5rem;
    }

    .intro-paragraph {
        text-align: left;
    }

    .document-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .document-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .privacy-content h1 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-content h1 {
        font-size: 1.5rem;
    }

    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .contact-details h2 {
        font-size: 1.375rem;
    }

    .contact-details .address,
    .contact-details .email-link {
        font-size: 1rem;
    }
}

/* Tablet (768px to 1280px) */
@media (min-width: 768px) and (max-width: 1279px) {
    .container {
        max-width: 984px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .page-layout {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
}

/* Desktop (1280px and above) */
@media (min-width: 1280px) {
    .container {
        max-width: 1160px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 4rem 0;
    }
}

/* Large Desktop (1536px and above) */
@media (min-width: 1536px) {
    .container {
        max-width: 1280px;
    }

    h1 {
        font-size: 2.75rem;
    }
}
