/* CSS Variables for easy customization */
:root {
    --background-color: #f4efe5;
    --text-color: #6b5e54;
    --primary-color:#c1b1a7;
    --primary-hover: #6b5e54;
    --white: #ffffff;
    --border-radius: 0.5rem;
}

/* Add at the top of the file */
html {
    scroll-behavior: smooth;
}

/* Base styles */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    padding-bottom: 4rem;
}

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

/* Navigation styles */
.navbar {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    color: var(--primary-hover);
}

.nav-links a i {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* Add specific styling for the navigation button */
.nav-links .button {
    background-color: var(--text-color);  /* Use text color for nav button background */
}

.nav-links .button:hover {
    background-color: var(--primary-color);  /* Use primary color for hover state */
}

/* Button styles */
.button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;  /* Remove underline from button links */
}

.button:hover {
    background-color: var(--primary-hover);
}

/* Hero section styles */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 42rem;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}

/* Features section styles */
.features {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.features.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.feature-card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(142, 145, 150, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* CTA section styles */
.cta {
    padding: 5rem 2rem;
}

.cta-card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 4rem;
    text-align: center;
  
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: #666;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .container {
        padding: 1rem 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description,
    .cta-description {
        font-size: 1.125rem;
    }
}

/* Make sure the contact section also has some bottom margin */
.contact {
    margin-bottom: 5rem;
    padding: 5rem 0rem;
}

.contact .cta-title {
    text-align: center;
    margin-bottom: 2rem;
}
.hidden{
    display: none;
}
