:root {
    /* Primary Colors */
    --primary-1: #c9b8d8; /* Soft lavender */
    --primary-2: #e8c9b8; /* Soft peach */
    --primary-3: #b8d8c9; /* Soft mint */
    --primary-4: #d8b8c9; /* Soft rose */
    --primary-5: #b8c9d8; /* Soft powder blue */

    /* Light & Dark Shades */
    --primary-1-light: #e5deec;
    --primary-1-dark: #9f86b3;
    --primary-2-light: #f4e4db;
    --primary-2-dark: #c9a08a;
    --primary-3-light: #deeee4;
    --primary-3-dark: #8ab39f;
    --primary-4-light: #eddee4;
    --primary-4-dark: #b38a9f;
    --primary-5-light: #dee4ed;
    --primary-5-dark: #8a9fb3;

    /* Neutral Colors */
    --neutral-100: #ffffff;
    --neutral-200: #f8f9fa;
    --neutral-300: #e9ecef;
    --neutral-400: #dee2e6;
    --neutral-500: #adb5bd;
    --neutral-600: #6c757d;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;

    /* Font Sizes */
    --fs-base: 16px;
    --fs-sm: 0.875rem;
    --fs-md: 1rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-xxl: 2rem;
    --fs-xxxl: 2.5rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    --spacing-xxxl: 5rem;
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: var(--fs-base);
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--neutral-800);
    background-color: var(--neutral-200);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neutral-900);
}

h1 {
    font-size: var(--fs-xxxl);
}

h2 {
    font-size: var(--fs-xxl);
}

h3 {
    font-size: var(--fs-xl);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-1-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-1);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: var(--spacing-xxl) 0;
}

.bg-light {
    background-color: var(--neutral-100);
}

.bg-primary-1 {
    background-color: var(--primary-1-light);
}

.bg-primary-2 {
    background-color: var(--primary-2-light);
}

.text-center {
    text-align: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-1);
    color: var(--neutral-900);
}

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

.btn-secondary:hover {
    background-color: var(--primary-3);
    color: var(--neutral-900);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-1-dark);
    color: var(--primary-1-dark);
}

.btn-outline:hover {
    background-color: var(--primary-1-dark);
    color: white;
}

.btn-donate {
    background-color: var(--primary-2-dark);
    color: white;
    font-weight: 600;
}

.btn-donate:hover {
    background-color: var(--primary-2);
    color: var(--neutral-900);
}

/* Header */
header {
    background-color: var(--neutral-100);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--neutral-900);
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin-left: var(--spacing-lg);
}

.navbar-menu a {
    color: var(--neutral-700);
    font-weight: 500;
    position: relative;
}

.navbar-menu a:hover {
    color: var(--primary-1-dark);
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-1-dark);
    transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--neutral-700);
    padding: 0.5rem;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle i {
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--neutral-100);
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neutral-100);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-300);
}

.hero-desc {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--neutral-100);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

/* Services Section */
.services-section {
    background-color: var(--primary-1-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background-color: var(--neutral-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-1-dark);
}

.service-price {
    font-weight: 700;
    color: var(--primary-2-dark);
    margin-bottom: 1rem;
}

.service-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--neutral-300);
}

.service-features ul {
    padding-left: 1.2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
    position: relative;
    overflow: hidden;
}

.features-container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--neutral-100);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-1-light);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-1-dark);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* Price Plans */
.priceplan-section {
    background-color: var(--primary-3-light);
}

.priceplan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background-color: var(--neutral-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-header {
    padding: 1.5rem;
    background-color: var(--primary-1);
    color: var(--neutral-900);
    text-align: center;
}

.price-content {
    padding: 2rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-1-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.price-features {
    margin-bottom: 2rem;
}

.price-features ul {
    padding-left: 1.2rem;
    list-style-type: none;
}

.price-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-3-dark);
    font-weight: bold;
}

.price-card .btn {
    display: block;
    width: 100%;
    text-align: center;
}

/* Team Section */
.team-section {
    background-color: var(--neutral-100);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--neutral-200);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-photo img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-1-dark);
    font-style: italic;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--primary-4-light);
    position: relative;
    overflow: hidden;
}

.reviews-container {
    position: relative;
    z-index: 2;
}

.reviews-slider {
    margin-top: 3rem;
    padding-bottom: 3rem;
}

.review-item {
    background-color: var(--neutral-100);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 1rem;
}

.review-text::before,
.review-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-4);
    position: absolute;
}

.review-text::before {
    top: -10px;
    left: -10px;
}

.review-text::after {
    bottom: -30px;
    right: -10px;
}

.review-author {
    font-weight: 700;
    color: var(--primary-4-dark);
    text-align: right;
}

/* Core Info Section */
.coreinfo-section {
    background-color: var(--neutral-100);
}

.coreinfo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.coreinfo-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--primary-5-light);
    transition: all 0.3s ease;
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-5);
}

.coreinfo-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-5-dark);
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-2-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background-color: var(--neutral-100);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neutral-700);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--neutral-400);
    border-radius: 0.25rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-2);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-check-input {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.services-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.service-option {
    display: flex;
    align-items: center;
}

.service-option input {
    margin-right: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-2);
    color: var(--neutral-900);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.contact-info-content h4 {
    margin-bottom: 0.25rem;
    color: var(--neutral-700);
}

.contact-info-content p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Blog Section */
.blog-section {
    background-color: var(--neutral-200);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background-color: var(--neutral-100);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.blog-link {
    font-weight: 600;
    color: var(--primary-1-dark);
    position: relative;
    padding-bottom: 0.25rem;
}

.blog-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-1-dark);
    transition: width 0.3s ease;
}

.blog-link:hover::after {
    width: 100%;
}

/* Donation Box */
.donation-box {
    background-color: var(--primary-2);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.donation-box h3 {
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.donation-box p {
    margin-bottom: 1.5rem;
    color: var(--neutral-800);
}

.donation-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.donation-amount {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--neutral-100);
    border-radius: 5px;
    font-weight: 600;
    color: var(--primary-2-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-amount:hover {
    background-color: var(--primary-2-dark);
    color: var(--neutral-100);
}

.donation-custom {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.donation-custom input {
    width: 150px;
    padding: 0.75rem;
    border: 1px solid var(--neutral-400);
    border-radius: 5px;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--neutral-800);
    color: var(--neutral-300);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-100);
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--neutral-400);
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: var(--neutral-100);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-1);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--neutral-400);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-1-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.75rem;
    color: var(--primary-1);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: var(--neutral-500);
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: 1rem;
    color: var(--neutral-600);
    font-size: 0.75rem;
}

/* Space Page */
.space-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Additional Pages */
.additional-section {
    padding: 5rem 0;
}

.additional-section:nth-child(odd) {
    background-color: var(--neutral-200);
}

.additional-section:nth-child(even) {
    background-color: var(--neutral-100);
}

.additional-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.additional-text {
    flex: 1;
}

.additional-image {
    flex: 1;
}

.additional-elements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.additional-element {
    padding: 1.5rem;
    background-color: var(--neutral-100);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.additional-element:hover {
    transform: translateY(-10px);
}

/* Decorative Elements */
.shape-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    top: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    background-color: var(--primary-1);
    opacity: 0.2;
    border-radius: 50% 0 50% 50%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-color: var(--primary-2);
    opacity: 0.2;
    border-radius: 50% 50% 0 50%;
    animation: float 12s ease-in-out infinite;
}

.shape-3 {
    top: 40%;
    right: 10%;
    width: 80px;
    height: 80px;
    background-color: var(--primary-3);
    opacity: 0.2;
    border-radius: 0 50% 50% 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(15px, 15px) rotate(10deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        animation: fadeIn 1s ease-in-out;
    }
    
    .slide-up {
        animation: slideUp 0.8s ease-in-out;
    }
    
    .slide-in-left {
        animation: slideInLeft 0.8s ease-in-out;
    }
    
    .slide-in-right {
        animation: slideInRight 0.8s ease-in-out;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
} 