:root {
    --font-sans: "Inter", sans-serif;
    --font-display: "Outfit", sans-serif;
    
    --bg-warm: #FDF8E1;
    --ink: #2D2A4A;
    --white: #FFFFFF;
    
    --pride-red: #FF0000;
    --pride-orange: #FF7F00;
    --pride-yellow: #FFFF00;
    --pride-green: #00FF00;
    --pride-blue: #0000FF;
    --pride-purple: #9400D3;
    
    --rainbow-gradient: linear-gradient(90deg, 
        #FF0000, #FF7F00, #FFFF00, #00FF00, #0000FF, #4B0082, #9400D3
    );
    --rainbow-glow: 0 0 20px rgba(148, 0, 211, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-warm);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 900;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(253, 248, 225, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 42, 74, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-logo {
    height: 34px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--ink);
    height: 2px;
    width: 24px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(45, 42, 74, 0.7);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--ink);
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255, 77, 77, 0.1);
    color: var(--pride-red);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    line-height: 1;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.rainbow-text {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(45, 42, 74, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button.primary {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(45, 42, 74, 0.4);
    border: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
}

.cta-button.primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.cta-button.primary:hover::after {
    left: 100%;
}

.cta-button.primary:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(45, 42, 74, 0.5);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--ink);
    border: 2px solid var(--ink);
}

.cta-button.secondary-outline {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
}

.cta-button:hover {
    transform: scale(1.05);
}

.contact-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-visual {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 32px;
}

.hero-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(45, 42, 74, 0.15);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.hero-card {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 16px;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--rainbow-gradient);
    opacity: 0.1;
    transform: rotate(45deg) scale(1.5);
    filter: blur(40px);
}

.card-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 4px solid;
    opacity: 0.2;
}

.circle-1 {
    width: 160px;
    height: 160px;
    border-color: var(--pride-yellow);
    top: -40px;
    right: -40px;
    animation: spin 10s linear infinite;
}

.circle-2 {
    width: 120px;
    height: 120px;
    border-color: var(--pride-blue);
    bottom: -40px;
    left: -40px;
}

.decor-sparkle {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 48px;
    animation: bounce 2s infinite;
}

.rainbow-line {
    height: 8px;
    width: 100%;
    background: var(--rainbow-gradient);
}

/* Intro Section */
.intro {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(148, 0, 211, 0.03), transparent);
    pointer-events: none;
}

.section-title {
    font-size: 48px;
    margin-bottom: 32px;
    text-align: left;
}

.section-desc {
    font-size: 20px;
    color: rgba(45, 42, 74, 0.7);
    max-width: 800px;
    margin: 0 0 60px;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    background: var(--white);
    border-radius: 24px;
    border: 2px solid rgba(45, 42, 74, 0.05);
    box-shadow: 0 10px 30px rgba(45, 42, 74, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--pride-blue);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

/* Actions Section */
.actions {
    padding: 100px 0;
}

.bg-warm {
    background: var(--bg-warm);
}

.actions-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: flex-start;
}

.actions-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.action-list-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    height: fit-content;
}

.actions-cta-wrapper {
    display: flex;
    justify-content: center;
}

.cta-button.pride-button {
    background: var(--pride-purple);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(148, 0, 211, 0.3);
    position: relative;
    z-index: 1;
}

.cta-button.pride-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(148, 0, 211, 0.4);
}

.card-title {
    font-size: 24px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 500;
    color: rgba(45, 42, 74, 0.8);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pride-green);
    font-weight: 900;
    font-size: 20px;
}

.actions-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gifts-card {
    padding: 180px 32px 32px;
    background: var(--ink);
    color: var(--white);
    border: 3px solid transparent;
    background-image: linear-gradient(var(--ink), var(--ink)), var(--rainbow-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 20px 50px rgba(148, 0, 211, 0.3);
    transform: scale(1.02);
    position: relative;
    margin-top: 40px;
}

.gift-image-hero {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    width: 240px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    z-index: 20;
    transition: transform 0.3s ease;
}

.gift-image-hero:hover {
    transform: translateX(-50%) rotate(0deg) scale(1.1);
}

.gifts-card .card-title {
    color: var(--pride-yellow);
    text-shadow: 0 0 10px rgba(255, 212, 77, 0.3);
    justify-content: center;
    margin-top: 0;
}

.gifts-card .gift-item p {
    color: rgba(255, 255, 255, 0.7);
}

.gifts-card .gift-item h4 {
    color: var(--white);
}

.gift-item {
    margin-bottom: 32px;
}

.gift-item h4 {
    margin-bottom: 8px;
}

.gift-item p {
    font-size: 14px;
    color: rgba(45, 42, 74, 0.6);
}

/* Approaches Section */
.approaches {
    padding: 100px 0;
    background: var(--white);
}

.approaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.approach-card {
    padding: 40px;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 800;
}

.approach-card p {
    font-size: 15px;
    line-height: 1.6;
}

.approach-icon {
    font-size: 40px;
    margin-bottom: 12px;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Matte Pride Colors with Higher Contrast */
.card-red { background-color: #B33939; color: white; }
.card-orange { background-color: #B33915; color: white; }
.card-yellow { background-color: #F9CA24; color: var(--ink); }
.card-green { background-color: #006266; color: white; }
.card-blue { background-color: #0652DD; color: white; }
.card-purple { background-color: #6D214F; color: white; }

.card-red h3, .card-orange h3, .card-green h3, .card-blue h3, .card-purple h3 {
    color: white;
}

.card-red p, .card-orange p, .card-green p, .card-blue p, .card-purple p {
    color: rgba(255, 255, 255, 0.9);
}

.card-yellow h3 {
    color: var(--ink);
}

.card-yellow p {
    color: rgba(45, 42, 74, 0.9);
}

.card-yellow .approach-icon {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team {
    padding: 100px 0;
}

.bg-dark {
    background: var(--ink);
    color: var(--white);
}

.text-white {
    color: var(--white);
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6);
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.team-member {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    align-items: center;
    transition: background 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.05);
}

.member-photo {
    width: 220px;
    height: 220px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member-name {
    font-size: 32px;
    color: var(--pride-yellow);
    margin-bottom: 4px;
}

.member-role {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-methods {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    margin-bottom: 60px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: var(--ink);
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--pride-blue);
}

.footer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: var(--rainbow-gradient);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

/* Footer */
.main-footer {
    padding: 48px 0;
    border-top: 1px solid rgba(45, 42, 74, 0.05);
    color: rgba(45, 42, 74, 0.4);
    font-weight: 500;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-link {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 25px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-icons {
    display: flex;
    gap: 24px;
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-on-scroll {
    opacity: 1;
    transition: all 0.8s ease-out;
}

.js-enabled .animate-on-scroll {
    opacity: 0;
}

.js-enabled .animate-on-scroll.active {
    opacity: 1;
}

.slide-in-left {
    transform: translateX(0);
}

.js-enabled .slide-in-left {
    transform: translateX(-50px);
}

.js-enabled .slide-in-left.active {
    transform: translateX(0);
}

.slide-in-right {
    transform: translateX(0);
}

.js-enabled .slide-in-right {
    transform: translateX(50px);
}

.js-enabled .slide-in-right.active {
    transform: translateX(0);
}

.scale-in {
    transform: scale(1);
}

.js-enabled .scale-in {
    transform: scale(0.8);
}

.js-enabled .scale-in.active {
    transform: scale(1);
}

.fade-in {
    transform: translateY(0);
}

.js-enabled .fade-in {
    transform: translateY(30px);
}

.js-enabled .fade-in.active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }
    
    .hero-grid {
        gap: 32px;
    }
}

@media (max-width: 992px) {
    .hero-grid, .actions-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 40px;
    }

    .hero-image {
        max-width: 350px;
    }
    
    .features-grid, .approaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .member-photo {
        margin: 0 auto;
        width: 180px;
        height: 180px;
    }

    .actions-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .actions-main {
        order: 2;
    }

    .actions-sidebar {
        order: 1;
    }

    .gifts-card {
        margin-top: 25px;
        padding-top: 127px;
    }

    .gift-image-hero {
        width: 200px;
        top: -90px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }

    .nav-toggle-label {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-warm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(45, 42, 74, 0.1);
        z-index: 1000;
    }

    .nav-toggle:checked ~ .nav-links {
        right: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }
    
    .features-grid, .approaches-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .gift-image-hero {
        width: 160px;
        top: -70px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .contact-actions {
        flex-direction: column;
    }
}
