/* Bisou Shared Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Instrument+Serif:ital@1&display=swap');

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

body {
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a4d;
    overflow-x: hidden;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.centered {
    text-align: center;
}

.logo-link {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a4d;
    text-decoration: none;
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #1a1a4d;
    text-decoration: none;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #5555cc;
}

/* Hero Section (Landing Page) */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e8d4f0 0%, #ffd4c8 30%, #ffeaa7 50%, #d4e4ff 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Instrument Serif', Georgia, serif;
}

.hero h1 em {
    font-style: italic;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cta-button {
    background: #ff8566;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 133, 102, 0.3);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    font-size: 14px;
    color: #5555cc;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
}

.scroll-hint::after {
    content: '↓';
    display: block;
    text-align: center;
    margin-top: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Section Styles */
.section {
    padding: 80px 20px;
    text-align: center;
}

.what-is-bisou {
    background: #c8d4ff;
}

.what-is-bisou h2 {
    font-size: 42px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'Instrument Serif', Georgia, serif;
}

.what-is-bisou p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.difference-section {
    background: #ffefd5;
    padding: 80px 20px;
}

.how-it-works-btn {
    background: #c8d4ff;
    color: #1a1a4d;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 30px;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.difference-section h2 {
    font-size: 38px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 50px;
    font-family: 'Instrument Serif', Georgia, serif;
}

/* Cards */
.cards {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #1a1a4d;
}

.card-discover {
    background: linear-gradient(135deg, #ffe4d4 0%, #ffd4c8 100%);
}

.card-connect {
    background: linear-gradient(135deg, #e8d4ff 0%, #c8d4ff 100%);
}

.card-grow {
    background: linear-gradient(135deg, #d4e4ff 0%, #c8d4ff 100%);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.card h3 {
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
    color: #ff6b4a;
    font-family: 'Instrument Serif', Georgia, serif;
}

.card-connect h3, .card-grow h3 {
    color: #5555cc;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Coming Soon Section */
.coming-soon {
    background: #ffefd5;
    padding: 80px 20px;
}

.preview-btn {
    background: #c8d4ff;
    color: #1a1a4d;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.coming-soon h2 {
    font-size: 38px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'Instrument Serif', Georgia, serif;
}

.coming-soon > p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.phone-mockups {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.phone {
    width: 250px;
    height: auto;
}

.phone img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.feature-bullet {
    width: 8px;
    height: 30px;
    border-radius: 4px;
    background: #ff8566;
}

.feature-bullet.purple {
    background: #5555cc;
}

/* Testimonials */
.testimonials {
    background: #ffefd5;
    padding: 80px 20px;
}

.testimonial-btn {
    background: #ffd4c8;
    color: #1a1a4d;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.testimonials h2 {
    font-size: 38px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 40px;
    font-family: 'Instrument Serif', Georgia, serif;
}

.testimonial-cards {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 30px;
    background: white;
    border: 2px solid #1a1a4d;
    border-radius: 15px;
    text-align: left;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    color: #5555cc;
    font-style: normal;
}

/* Page Content Styles (for secondary pages) */
.page-content {
    min-height: 100vh;
    padding: 120px 20px 80px;
}

.page-content.privacy {
    background: linear-gradient(135deg, #ffefd5 0%, #e8d4f0 100%);
}

.page-content.terms {
    background: linear-gradient(135deg, #e8d4f0 0%, #ffd4c8 100%);
}

.page-content.support {
    background: linear-gradient(135deg, #c8d4ff 0%, #ffefd5 100%);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    border: 2px solid #1a1a4d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-container h1 {
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 10px;
    color: #1a1a4d;
    font-family: 'Instrument Serif', Georgia, serif;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-container h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a4d;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-container h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1a1a4d;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-container ul,
.content-container ol {
    margin: 15px 0 20px 0;
    padding-left: 30px;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.content-container li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 16px;
}

.intro-text {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.intro-text.privacy {
    background: #f5f5ff;
    border-left: 4px solid #5555cc;
}

.intro-text.terms {
    background: #fff4f4;
    border-left: 4px solid #ff6b4a;
}

.contact-info {
    background: #fff9e6;
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    border: 2px solid #ffd4c8;
}

.contact-info strong {
    color: #ff6b4a;
}

/* Support Page Specific Styles */
.contact-box {
    background: linear-gradient(135deg, #ffd4c8 0%, #ffe4d4 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid #1a1a4d;
}

.contact-box p {
    font-size: 18px;
    margin-bottom: 0;
}

.contact-box a {
    color: #ff6b4a;
    font-weight: 600;
    text-decoration: none;
    font-size: 20px;
}

.contact-box a:hover {
    text-decoration: underline;
}

.deletion-section {
    background: #f5f5ff;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #5555cc;
    margin-top: 30px;
}

.deletion-section h2 {
    margin-top: 0;
    color: #5555cc;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.note-box {
    background: #fff9e6;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid #ffd4c8;
}

.note-box p {
    margin-bottom: 0;
    font-size: 15px;
}

/* Footer */
footer {
    background: #ffefd5;
    padding: 40px 20px;
    text-align: center;
    font-size: 14px;
    font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-top: 1px solid rgba(26, 26, 77, 0.1);
}

footer a {
    color: #5555cc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .cards {
        flex-direction: column;
    }

    nav {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 12px;
    }

    .content-container {
        padding: 30px 20px;
    }

    .content-container h1 {
        font-size: 36px;
    }

    .content-container h2 {
        font-size: 20px;
    }

    .contact-box {
        padding: 20px;
    }

    .logo-link {
        font-size: 24px;
    }
}