/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

/* CSS Custom Properties for the color theme */
:root {
    /* Primary colors */
    --primary: #3CE8B5;
    --primary-light: #64ECBF;
    --primary-dark: #2AB594;
    
    /* Secondary colors */
    --secondary: #6F3FF5;
    --secondary-dark: #5E35D1;
    
    /* Background colors */
    --bg-default: #1E2230;
    --bg-paper: #1E2230;
    --bg-darker: #181B23;
    
    /* Task colors for accents */
    --accent-1: #89D8FD;
    --accent-2: #A2F0F9;
    --accent-3: #5DADE2;
    --accent-4: #66D19E;
    --accent-5: #B9F18C;
    --accent-6: #F8D66D;
    --accent-7: #FFA25B;
    --accent-8: #E96E6E;
    --accent-9: #9480E6;
    --accent-10: #8FA2FF;
    
    /* Text colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D1;
    --text-muted: #8A9BAE;
}

/* Body styling */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-default);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    gap: 4rem;
    padding: 3rem 0 4rem 0;
    position: relative;
    min-height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.title-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(60, 232, 181, 0.3);
    animation: iconGlow 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(60, 232, 181, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(60, 232, 181, 0.5);
        transform: scale(1.02);
    }
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 520px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gallery-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.4),
        0 0 0 1px rgba(60, 232, 181, 0.2);
    opacity: 1;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}



.gallery-slides {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.67%; /* Maintain 3:2 aspect ratio (1200x800) */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translate3d(30px, 0, 0) scale(0.95);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.slide.active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    background: var(--bg-paper);
    border: 2px solid rgba(60, 232, 181, 0.3);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    pointer-events: all;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    opacity: 0.8;
    will-change: transform, opacity, box-shadow;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}



/* Navigation Dots */
.gallery-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(60, 232, 181, 0.5);
    background: transparent;
    cursor: pointer;
    will-change: transform, background-color, border-color, box-shadow;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(60, 232, 181, 0.6);
    transform: scale(1.1);
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-default);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(60, 232, 181, 0.3);
    border: none;
    cursor: pointer;
    justify-content: center;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(60, 232, 181, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.chrome-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Card Styles */
.card {
    background: linear-gradient(135deg, 
        rgba(60, 232, 181, 0.08), 
        rgba(111, 63, 245, 0.06));
    padding: 2rem;
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, 
        rgba(60, 232, 181, 0.12), 
        rgba(111, 63, 245, 0.1));
    box-shadow: 0 16px 40px rgba(60, 232, 181, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card img {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card ul,
.card ol {
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.card li {
    margin-bottom: 0.5rem;
}

.card blockquote {
    font-style: italic;
    color: var(--text-secondary);
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin: 1rem 0;
}

.card blockquote footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

.card.wide {
    grid-column: span 2;
}

.card.about-card {
    grid-column: 1 / -1; /* Span full width */
    background: linear-gradient(135deg, 
        rgba(60, 232, 181, 0.1), 
        rgba(111, 63, 245, 0.08));
    border: none;
    position: relative;
}

.card.about-card:hover {
    background: linear-gradient(135deg, 
        rgba(60, 232, 181, 0.15), 
        rgba(111, 63, 245, 0.12));
}

.about-card h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.about-card h3 {
    color: var(--text-primary);
    margin: 2rem 0 1.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.benefit {
    background: rgba(60, 232, 181, 0.08);
    padding: 1.25rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit:hover {
    transform: translateY(-2px);
    background: rgba(60, 232, 181, 0.15);
    box-shadow: 0 8px 25px rgba(60, 232, 181, 0.1);
}

.benefit strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Review Cards */
.card.review-card {
    background: linear-gradient(135deg, 
        rgba(248, 214, 109, 0.12), 
        rgba(255, 162, 91, 0.08));
    border: none;
    position: relative;
}

.card.review-card:hover {
    background: linear-gradient(135deg, 
        rgba(248, 214, 109, 0.18), 
        rgba(255, 162, 91, 0.12));
}

.review-card h2 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-card p {
    font-style: italic;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* FAQ Cards */
.card.faq-card {
    grid-column: 1 / -1; /* Span full width */
    background: linear-gradient(135deg, 
        rgba(111, 63, 245, 0.08), 
        rgba(60, 232, 181, 0.06));
    border: none;
    position: relative;
}

.card.faq-card:hover {
    background: linear-gradient(135deg, 
        rgba(111, 63, 245, 0.12), 
        rgba(60, 232, 181, 0.1));
}

.faq-card h2 {
    color: var(--secondary);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(111, 63, 245, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(111, 63, 245, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(111, 63, 245, 0.1);
    border-color: rgba(111, 63, 245, 0.2);
    transform: translateY(-2px);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Card */
.card.contact-card {
    background: linear-gradient(135deg, 
        rgba(148, 128, 230, 0.12), 
        rgba(143, 162, 255, 0.08));
    border: none;
}

.card.contact-card:hover {
    background: linear-gradient(135deg, 
        rgba(148, 128, 230, 0.18), 
        rgba(143, 162, 255, 0.12));
}

.contact-card h2 {
    color: var(--accent-9);
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(148, 128, 230, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 128, 230, 0.2);
}

.contact-link:hover {
    background: rgba(148, 128, 230, 0.2);
    transform: translateY(-2px);
    border-color: var(--accent-9);
}

/* Privacy Card */
.card.privacy-card {
    background: linear-gradient(135deg, 
        rgba(102, 209, 158, 0.12), 
        rgba(60, 232, 181, 0.08));
    border: none;
}

.card.privacy-card:hover {
    background: linear-gradient(135deg, 
        rgba(102, 209, 158, 0.18), 
        rgba(60, 232, 181, 0.12));
}

.privacy-card h2 {
    color: var(--accent-4);
    margin-bottom: 1rem;
}

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

.privacy-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(60, 232, 181, 0.08);
    border-radius: 6px;
    border-left: 3px solid var(--accent-4);
}

.privacy-list strong {
    color: var(--text-primary);
}

.privacy-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-4);
    text-decoration: underline;
    text-decoration-color: transparent;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
    transform: translateX(5px);
}

.privacy-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Email Card */
.card.email-card {
    background: linear-gradient(135deg, 
        rgba(137, 216, 253, 0.12), 
        rgba(93, 173, 226, 0.08));
    border: none;
}

.card.email-card:hover {
    background: linear-gradient(135deg, 
        rgba(137, 216, 253, 0.18), 
        rgba(93, 173, 226, 0.12));
}

.email-card h2 {
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.email-info {
    margin-top: 1.5rem;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(137, 216, 253, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(137, 216, 253, 0.2);
    margin-bottom: 1rem;
    hyphens: none;
    -webkit-hyphens: none;
    word-break: break-all;
    max-width: 100%;
    box-sizing: border-box;
}

.email-link:hover {
    background: rgba(137, 216, 253, 0.2);
    transform: translateY(-2px);
    border-color: var(--accent-1);
}

.email-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* Email responsive styling */
@media (max-width: 768px) {
    .email-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .email-link {
        padding: 0.75rem;
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

.card.highlight {
    background: linear-gradient(135deg, 
        rgba(60, 232, 181, 0.2), 
        rgba(111, 63, 245, 0.15));
    text-align: center;
    border: none;
    position: relative;
}

.card.highlight.cta-card {
    grid-column: 1 / -1; /* Span full width */
    padding: 3rem 2rem;
}

.card.highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    opacity: 0.6;
    pointer-events: none;
}

.card.highlight:hover {
    background: linear-gradient(135deg, 
        rgba(60, 232, 181, 0.25), 
        rgba(111, 63, 245, 0.2));
    box-shadow: 0 20px 50px rgba(60, 232, 181, 0.2);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-card p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .button {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
}

.card.highlight .button {
    margin-top: 1.5rem;
}

/* Add colorful filled backgrounds to different cards */
/* Contact, Privacy, and Email cards have their own specific styling above */

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        margin-bottom: 3rem;
        padding: 2rem 0 3rem 0;
        min-height: auto;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -0.02em;
        line-height: 1.2;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .title-icon {
        width: 2.8rem;
        height: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-gallery {
        width: 100%;
    }
    
    .gallery-nav {
        width: calc(100% + 80px);
        left: -40px;
    }
    
    .nav-btn {
        width: 44px;
        height: 44px;
    }
    
    .gallery-dots {
        bottom: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .card.wide {
        grid-column: span 1;
    }
    
    .card.about-card {
        grid-column: 1 / -1;
    }
    

    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1.25rem;
    }
    
    .about-card h2 {
        font-size: 1.4rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
        margin: 1.5rem 0 1rem 0;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .review-card p {
        font-size: 0.95rem;
    }
    
    .review-card h2 {
        font-size: 1.1rem;
    }
    
    .card.faq-card {
        grid-column: 1 / -1;
    }
    
    .faq-card h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    .contact-links {
        gap: 0.75rem;
    }
    
    .contact-link {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .privacy-list li {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .email-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .email-note {
        font-size: 0.85rem;
    }
    
    .card.highlight.cta-card {
        grid-column: 1 / -1;
        padding: 2rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-card p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-card .button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
}
  