/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

main {
    flex: 1 0 auto;
}

/* Navbar Customization */
.navbar {
    background: linear-gradient(to right, #1a0f0c, #2c1810) !important;
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
}

.nav-link {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Button Styles */
.btn-dark {
    background-color: #2c1810;
    border-color: #2c1810;
}

.btn-dark:hover {
    background-color: #1a0f0c;
    border-color: #1a0f0c;
}

/* Card Customization */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #2c1810;
    font-family: 'Cinzel', serif;
}

/* Footer Customization */
footer {
    background: linear-gradient(to right, #1a0f0c, #2c1810) !important;
    flex-shrink: 0;
}

/* Animations */
.feature-box {
    transition: all 0.3s ease;
}

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

/* Custom Colors */
.text-primary {
    color: #c17f59 !important;
}

.bg-primary {
    background-color: #c17f59 !important;
}

/* Content Styles */
.content {
    padding: 2rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
} 

.author-image img{
    border-radius: 100%;
    /* center */
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
