/* Modern Spiritual Design for Vejen Til Balance */

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: #fdfbf7;
    color: #444;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

/* Navigation styles */
.spiritual-navbar {
    background-color: rgba(117, 165, 117, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.spiritual-navbar .navbar-brand {
    color: #fff !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
}

.spiritual-navbar .nav-link {
    color: #fff !important;
    font-size: 18px;
    font-weight: 400;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.spiritual-navbar .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.spiritual-navbar .nav-link:hover:after {
    width: 80%;
}

/* Container and section styles */
.spiritual-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px;
}

.spiritual-section {
    padding: 50px 0;
}

/* Typography */
h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: #2e582e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #2e582e;
    margin-bottom: 1.2rem;
}

h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #3a6b3a;
    margin-bottom: 1rem;
}

.spiritual-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    border-left: 3px solid #75a575;
    padding-left: 20px;
    margin: 30px 0;
}

/* Cards and sidebar */
.spiritual-card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spiritual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.spiritual-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #2e582e;
    margin-bottom: 15px;
}

/* Images */
.img-spiritual {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.img-spiritual:hover {
    transform: scale(1.01);
}

/* Image text wrapping styles */
.text-wrap-around-image-right {
    float: left;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.text-wrap-around-image-right img {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-wrap-around-image-left {
    float: left;
    width: 100%;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.text-wrap-around-image-left img {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-spiritual {
    background-color: #75a575;
    border: none;
    color: #fff;
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(117, 165, 117, 0.3);
}

.btn-spiritual:hover {
    background-color: #5d8a5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(117, 165, 117, 0.4);
    color: #fff;
}

.btn-spiritual.btn-sm {
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Footer */
.spiritual-footer {
    background-color: #f2f7f2;
    padding: 40px 0;
    margin-top: 60px;
}

/* Animation for page load */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

/* Divider with spiritual symbol */
.spiritual-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 40px 0;
}

.spiritual-divider::before,
.spiritual-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #cecece;
}

.spiritual-divider::before {
    margin-right: 20px;
}

.spiritual-divider::after {
    margin-left: 20px;
}

.spiritual-divider-icon {
    font-size: 24px;
    color: #75a575;
}

/* Contact info */
.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info a {
    color: #75a575;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #5d8a5d;
    text-decoration: underline;
}
