@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&display=swap');

:root {
    --primary: #138a8a; /* vibrant teal */
    --accent: #f5a623; /* sunset orange */
    --highlight: #ff7e5f; /* soft coral */
    --background: #0a1a1f; /* dark navy/teal */
    --surface: rgba(19, 138, 138, 0.08); /* glass surface */
    --secondary: #0d5a5e; /* dark teal */
    --text-dark: #e0f2f1; /* light teal white */
    --text-light: #ffffff;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    padding: 100px 0;
}

/* Typography */
.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(224, 242, 241, 0.6);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #4A225B;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(90, 42, 110, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 1rem;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(19, 138, 138, 0.2);
}

.nav-btn {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(10, 26, 31, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
}

#logo-img {
    height: 45px;
    width: 45px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    background: radial-gradient(circle at top right, rgba(245, 166, 35, 0.08), transparent 45%),
                radial-gradient(circle at bottom left, rgba(19, 138, 138, 0.08), transparent 45%);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
    filter: blur(80px);
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-content {
    flex: 1;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    color: rgba(224, 242, 241, 0.7);
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.hero h1 span {
    color: var(--accent);
    display: block;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 550px;
    color: rgba(224, 242, 241, 0.7);
}

.hero-image-container {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: 500px;
    object-fit: cover;
    border-radius: 100px 30px 100px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 2;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.05;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    right: -50px;
    z-index: 1;
    animation: blobify 15s infinite alternate;
}

@keyframes blobify {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* About Section */
.about {
    background-color: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    background: linear-gradient(to right, var(--accent), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-align: center;
}

.philosophy-single {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* How It Works - Horizontal Timeline */
.how-it-works {
    background: linear-gradient(to bottom, var(--background), #0d2a33);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    z-index: 1;
}

.timeline-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--background);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0 auto 2rem;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(19, 138, 138, 0.2);
}

.timeline-step:hover .step-number {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(19, 138, 138, 0.4);
}

.timeline-step h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}


/* Founder Section Styles */
.founder {
    background-color: var(--background);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.founder-image {
    position: relative;
    width: 100%;
}

.founder-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.founder-img:hover {
    transform: scale(1.02);
}

.founder-info h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.founder-info p {
    font-size: 1.2rem;
    color: rgba(224, 242, 241, 0.6);
    margin-bottom: 2rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.linkedin-link:hover {
    color: var(--highlight);
    transform: translateX(5px);
}

.linkedin-link i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .founder-info h3 {
        font-size: 2rem;
    }
}


/* Stories Section */
.stories {
    background-color: var(--background);
    background: radial-gradient(circle at center, rgba(19, 138, 138, 0.15) 0%, var(--background) 70%);
    position: relative;
    overflow: hidden;
}

.stories::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.2;
    z-index: 1;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 5rem 4rem;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-container:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(19, 138, 138, 0.3);
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
    line-height: 1.4;
}

.testimonial-text::before {
    content: '"';
    font-size: 8rem;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    opacity: 0.15;
    font-family: 'Outfit', sans-serif;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.author-title {
    display: block;
    font-weight: 400;
    font-size: 1rem;
    color: rgba(224, 242, 241, 0.5);
    margin-top: 0.5rem;
    letter-spacing: 0;
    text-transform: none;
}

/* Join Us Section */
.join-us {
    background: radial-gradient(circle at bottom right, rgba(245, 166, 35, 0.05), var(--background));
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-family: inherit;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(19, 138, 138, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
    background-color: #061114;
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-text {
    color: #666;
    margin-bottom: 2rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(90, 42, 110, 0.05);
    color: #999;
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .container { padding: 0 1.5rem; }
    .hero { height: auto; padding: 150px 0 100px; text-align: center; }
    .hero-content { margin-bottom: 4rem; }
    .hero-image-container { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .calendar-layout, .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .timeline { flex-direction: column; padding-top: 0; }
    .timeline::before { width: 2px; height: 100%; top: 0; left: 30px; }
    .timeline-step { display: flex; text-align: left; padding: 20px 0; }
    .step-number { margin: 0 2rem 0 0; min-width: 60px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .section-title { font-size: 2.2rem; }
    .form-container { padding: 2rem; }
}
