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

body {
    font-family: 'Poppins', sans-serif;
    color: #101010;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar__logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #101010;
    text-decoration: none;
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar__menu a {
    font-size: 14px;
    font-weight: 500;
    color: #101010;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar__menu a:hover,
.navbar__menu a.active {
    color: #C80180;
}

.navbar__cta {
    padding: 12px 24px;
    border: 2px solid #101010;
    color: #101010;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.navbar__cta:hover {
    background: #101010;
    color: white;
}

/* Mobile Hamburger Menu */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.navbar__hamburger span {
    width: 25px;
    height: 3px;
    background: #101010;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar__hamburger:hover span {
    background: #C80180;
}

/* Mobile Menu */
.navbar__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 80px 40px 40px;
    overflow-y: auto;
}

.navbar__mobile-menu.active {
    right: 0;
}

.navbar__mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    color: #101010;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__mobile-close:hover {
    color: #C80180;
}

.navbar__mobile-menu a {
    padding: 16px 0;
    color: #101010;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    transition: color 0.3s;
}

.navbar__mobile-menu a:hover,
.navbar__mobile-menu a.active {
    color: #C80180;
}

.navbar__mobile-menu .navbar__cta {
    margin-top: 20px;
    padding: 16px 24px;
    border: 2px solid #101010;
    text-align: center;
    border-bottom: 2px solid #101010;
}

.navbar__mobile-menu .navbar__cta:hover {
    background: #101010;
    color: white;
}

/* Responsive Navbar Breakpoints */
@media (max-width: 1023px) {
    .navbar__menu {
        display: none;
    }
    
    .navbar__cta--desktop {
        display: none;
    }
    
    .navbar__hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .navbar__container {
        padding: 0 20px;
    }
    
    .navbar__logo-text {
        font-size: 14px;
    }
    
    .navbar__mobile-menu {
        width: 85%;
        padding: 60px 30px 30px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar__container {
        padding: 0 15px;
    }
    
    .navbar__logo-text {
        font-size: 12px;
    }
    
    .navbar__mobile-menu {
        width: 90%;
        padding: 60px 20px 20px;
    }
    
    .navbar__mobile-menu a {
        font-size: 15px;
        padding: 14px 0;
    }
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: #101010;
}

.hero__title-to {
    font-style: normal;
}

.hero__title-italic {
    font-style: italic;
    color: #C80180;
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero__description {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #C80180;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.hero__cta:hover {
    background: #a0016a;
}

.hero__image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Care Section */
.care {
    background: #f8f9fa;
    padding: 100px 0;
}

.care__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.care__title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 48px;
    line-height: 1.3;
}

.care__title-italic {
    font-style: italic;
    color: #C80180;
}

.care__content {
    margin-bottom: 48px;
}

.care__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.care__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #C80180;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.care__cta:hover {
    background: #a0016a;
}

/* Constellation Section */
.constellation {
    padding: 100px 0;
}

.constellation__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.constellation__title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 80px;
}

.constellation__title-italic {
    font-style: italic;
    color: #C80180;
}

.constellation__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.constellation__card {
    border: 2px solid #101010;
    padding: 48px 32px;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.constellation__card:hover {
    transform: translateY(-4px);
}

.constellation__card--featured {
    background: #C80180;
    color: white;
    border-color: #C80180;
    position: relative;
}

.constellation__logo {
    margin-bottom: 32px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.constellation__logo img {
    max-height: 60px;
    width: auto;
}

.constellation__logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #101010;
}

.constellation__card--featured .constellation__logo-text,
.constellation__card--featured .constellation__logo-hustle {
    color: white;
}

.constellation__logo-circle {
    width: 80px;
    height: 80px;
    border: 3px solid #101010;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.constellation__logo-hustle {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.constellation__description {
    font-size: 15px;
    line-height: 1.6;
}

.constellation__highlight {
    margin-top: 24px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.6;
}

.constellation__cursor {
    position: absolute;
    bottom: 24px;
    right: 24px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1a4e 0%, #4a1a4a 50%, #8b1a6b 100%);
    padding: 120px 0;
    text-align: center;
    color: white;
}

.cta__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta__title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.3;
}

.cta__title-italic {
    font-style: italic;
}

.cta__description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    background: white;
    color: #101010;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.cta__button:hover {
    background: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .constellation__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar__menu {
        display: none;
    }
    
    .hero__title {
        font-size: 40px;
    }
    
    .care__title,
    .constellation__title {
        font-size: 36px;
    }
    
    .cta__title {
        font-size: 40px;
    }
    
    .constellation__grid {
        grid-template-columns: 1fr;
    }
}
