/* guides.css - Styles for the main guides page */

main {
    padding-top: 100px; /* Space for fixed header */
}

/* Hero Section - styled like your homepage hero */
.guides-hero {
    text-align: center;
    padding: 80px 20px;
    background: #050505;
}

.guides-title {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #bd815f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Helvetica Neue", sans-serif;
}

.guides-subtitle {
    font-size: 20px;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Section */
.guides-grid-section {
    padding: 60px 0 80px;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.guide-card {
    display: block;
    text-decoration: none;
    background: #1C1C1E;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.guide-card-image {
    height: 220px;
    overflow: hidden;
}

.guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.guide-card:hover .guide-card-image img {
    transform: scale(1.05);
}

.guide-card-content {
    padding: 25px;
}

.guide-card-content h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.guide-card-content p {
    color: #a0a0a0;
    font-size: 16px;
    margin-bottom: 20px;
}

.read-more {
    color: #D4AC79;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-card:hover .read-more {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .guides-title {
        font-size: 48px;
    }
    .guides-subtitle {
        font-size: 18px;
    }
}
