/* assets/css/resources-style.css */
:root {
    --primary-navy: #1d273d;
    --secondary-gold: #D4AF37;
    --purple-primary: #663399;
    --purple-secondary: #4A1A5C;
    --blue-accent: #2E8B9E;
    --light-gray: #F5F5F5;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
	background: #e8e8e8
}

/* Main wrapper styling */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('../images/6830943f6417b2e5c7758eff.jpg') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
	color:#fff;
}

/* Welcome Section */
.welcome-section {

    padding: 4rem 0;
}

.welcome-text {
    font-size: 1.3rem;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 0;
}

/* Articles Section */
.yellow {
    background: #d5c28a;
    padding: 2rem 2rem;
}
.blue {
	background: #293857;
	padding: 2rem 2rem;
	margin-top:25px
}
.article-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    width: 100%;
    height: auto;
}

.article-content {
    padding-left: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.btn-custom {
    background-color: var(--primary-navy);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Book Summaries Section */
.book-summaries-section {

    padding: 5rem 0;
}

.book-content {
    padding-right: 3rem;
}

.book-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    width: 100%;
    height: auto;
}

.btn-warning {
    background-color: #FFC107;
    color: var(--text-dark);
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: #E0A800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .article-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }

    .book-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .welcome-text {
        font-size: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .articles-section,
    .book-summaries-section {
        padding: 3rem 0;
    }

    .welcome-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-section {
        height: 300px;
    }

    .shape {
        display: none;
    }
}
