/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

/* Variables CSS */
:root {
    --primary: hsl(250, 70%, 60%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(250, 70%, 70%);
    --primary-glow: hsl(250, 80%, 85%);
    
    --secondary: hsl(220, 60%, 50%);
    --secondary-foreground: hsl(0, 0%, 100%);
    
    --background: hsl(280, 20%, 10%);
    --foreground: hsl(280, 5%, 95%);
    
    --muted: hsl(280, 20%, 20%);
    --muted-foreground: hsl(280, 5%, 65%);
    
    --accent: hsl(280, 20%, 20%);
    --accent-foreground: hsl(280, 5%, 95%);
    
    --border: hsl(280, 20%, 20%);
    --card: hsl(280, 20%, 12%);
    --card-foreground: hsl(280, 5%, 95%);
    
    --radius: 0.75rem;
    
    --shadow-soft: 0 4px 20px -2px hsl(250, 70%, 60%, 0.15);
    --shadow-card: 0 10px 40px -10px hsl(250, 70%, 60%, 0.2);
    --shadow-lg: 0 20px 60px -10px hsl(250, 70%, 60%, 0.25);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-primary {
    color: var(--primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: hsl(250, 70%, 55%);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: var(--accent);
    border-color: var(--primary);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

/* Navigation */
.navigation {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(28, 25, 35, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}


.logo-icon> img {
    width: 20%;
    height: auto;
}
.logo-two{
    display: flex;
    align-items: center;
}
.logo-two> img{
    width: 60px;
    height: auto;
}
.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--background);
    padding-top: 5rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: left;
    animation: fadeIn 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background-color: hsl(250, 70%, 60%, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 36rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.hero-images {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hero-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
}

.hero-image-offset {
    margin-top: 2rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--background);
}

.section-header {
    max-width: 48rem;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: hsl(250, 70%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-description {
    color: var(--muted-foreground);
}

/* Templates Section */
.templates {
    padding: 5rem 0;
    background-color: var(--background);
}

.templates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.template-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    cursor: pointer;
}

.template-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.template-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.template-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(250, 70%, 60%, 0.9), hsl(250, 70%, 60%, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: end;
    padding: 1.5rem;
    color: white;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.template-description {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background-color: hsl(280, 20%, 15%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card-popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
    background: linear-gradient(135deg, var(--card), var(--accent));
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--primary-foreground);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.pricing-header {
    text-align: center;
    padding-top: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--muted-foreground);
    margin-left: 0.5rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.pricing-feature i {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    background-color: hsl(250, 70%, 60%, 0.1);
    border-radius: 50%;
    padding: 0.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1rem;
}

.pricing-card-popular .pricing-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.pricing-card-popular .pricing-btn:hover {
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: hsl(280, 20%, 15%);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: white;
}

.faq-question:hover {
    background-color: var(--accent);
}

.faq-question i {
    width: 1rem;
    height: 1rem;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
}

/* Footer */
.footer {
    background-color: hsl(281, 30%, 15%);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}


.footer-contact a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary);
}
.footer-contact span {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact span:hover {
    color: var(--primary);
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-features {
        flex-wrap: nowrap;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .templates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.75rem;
    }
}

/* Dark mode support - Already applied as default */
