/* Fonts */
 @font-face {
    font-family: 'Poetsen One';
    font-style: normal;
    font-weight: 400;
    src: local('Poetsen One'), url('https://fonts.cdnfonts.com/s/31868/PoetsenOne-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Roshida Valentines';
    font-style: normal;
    font-weight: 400;
    src: local('Roshida Valentines'), url('https://fonts.cdnfonts.com/s/39094/RoshidaValentines-d10K.woff') format('woff');
}

/* Colors */
:root {
    --primary: #0F6489;
    --secondary: #F8B22E;
    --accent: #7ABA5F;
}

/* Text */
.text-primary { 
  color: var(--primary);
}

.primary-text-shadow {
    text-shadow: 1px 1px 2px var(--primary);
}

.text-secondary { 
    color: var(--secondary); 
}

.text-accent { 
    color: var(--accent);
}

/* Backgrounds */
.bg-primary { 
    background-color: var(--primary); 
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-accent {
    background-color: var(--accent);
}

body {
    font-family: 'Poetsen One', sans-serif;
    color:white;
}

section {
    scroll-margin-top: 120px;
}

h1, h2, h3, h3, h5, h6 {
    font-family: 'Roshida Valentines', sans-serif;
    font-size: 2em; /* Increase size slightly for all headings */
}

h1 {
    font-size: 2.8em; /* Make h1 even larger */
}

h2 {
    font-size: 2.2em;
}

h3 {
    font-size: 2em;
}

h3 {
    font-family: 'Poetsen One', sans-serif;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

h3::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 2px;
}

/* Gradients */
.hero-gradient {
    background: linear-gradient(135deg, rgba(15,100,137,0.9) 0%, rgba(122,186,95,0.8) 100%);
}

.about-gradient {
    background: radial-gradient(circle at center, rgba(248, 178, 46,0.3) 0%, rgba(248, 178, 46,0.1) 100%);
}

.privacy-gradient, .legal-gradient {
    background: radial-gradient(circle at center, rgba(248, 178, 46,0.3) 0%, rgba(248, 178, 46,0.1) 100%);
}

.faq-gradient {
    background: radial-gradient(circle at center, rgba(15,100,137,0.3) 0%, rgba(15,100,137,0.1) 100%);
}

.service-gradient {
    background: linear-gradient(170deg, rgba(122,186,95, 0.5) 0%, rgba(248, 178, 46, 0.5) 100%);
}

.method-gradient {
    background: linear-gradient(135deg, rgba(122,186,95, 0.5) 0%, rgba(248, 178, 46, 0.5) 100%);
}

.seance-gradient {
    background: radial-gradient(circle at center, rgba(15,100,137, 0.5) 0%, rgba(122,186,95,0.7) 100%); 
    //linear-gradient(135deg, rgba(248, 178, 46, 0.5) 0%, rgba(248, 178, 46, 0.5) 100%);
}}


.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* Animations */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Navbar */
.nav-link {
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    box-shadow: 1px 1px 1px var(--primary);
    transition: width 0.3s ease;
}

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

/* Service Card Styles */
.service-card h3::after {
    left: 25%;
    background: var(--secondary);
    box-shadow: 1px 1px 1px var(--primary);
}

/* Method Card Styles */
.method-card h3::after {
    left: 25%;
    background: var(--secondary);
    box-shadow: 1px 1px 1px var(--primary);
}

/* Seances Card Styles */
.seance-card h3::after {
    left:25%;
    background: var(--primary);
}

/* Privacy & Legal Card Styles */
.privacy-card h3::after, .legal-card h3::after {
    left: 0%;
    background: var(--accent);
}

/* Section Headers Styles */
section h2 {
    position: relative;
    display: block;
    margin: 0 auto 2rem;
    text-align: center;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: var(--primary);
}

/* Contact Headers Styles */
#contact h2::after {
    background-color: var(--secondary);
    box-shadow: 1px 1px 1px var(--primary);
}

#contact h3::after {
    left: 0%;
    width: 70%;
    background-color: var(--secondary);
    box-shadow: 1px 1px 1px var(--primary);
}

/* FAQ Styles */
.faq-category {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.faq-category:hover {
    background-color: var(--secondary) !important;
    color: white !important;
}

.faq-question {
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-answer {
    transition: all 0.3s ease;
}

.rotate-180 {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    h2::after {
        bottom: -0.5rem;
    }

    .text-6xl {
        font-size: 3rem;
    }
    
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
}