/* style/fishing-games-weapons-equipment-intro.css */

/* General Page Styling */
.page-fishing-games-weapons-equipment-intro {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.page-fishing-games-weapons-equipment-intro .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-fishing-games-weapons-equipment-intro h1, 
.page-fishing-games-weapons-equipment-intro h2, 
.page-fishing-games-weapons-equipment-intro h3 {
    color: #007bff; /* Primary brand color */
    margin-bottom: 1rem;
    font-weight: bold;
}

.page-fishing-games-weapons-equipment-intro h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.page-fishing-games-weapons-equipment-intro h2 {
    font-size: 2.2rem;
    margin-top: 2.5rem;
    text-align: center;
    border-bottom: 2px solid #ffc107; /* Secondary brand color */
    padding-bottom: 0.5rem;
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games-weapons-equipment-intro h3 {
    font-size: 1.6rem;
    color: #333;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.page-fishing-games-weapons-equipment-intro p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.page-fishing-games-weapons-equipment-intro strong {
    color: #007bff;
}

.page-fishing-games-weapons-equipment-intro em {
    color: #ffc107;
    font-style: normal;
}

.page-fishing-games-weapons-equipment-intro .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
}

.page-fishing-games-weapons-equipment-intro .btn-primary {
    background-color: #007bff;
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-fishing-games-weapons-equipment-intro .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.page-fishing-games-weapons-equipment-intro .btn-secondary {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.page-fishing-games-weapons-equipment-intro .btn-secondary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

/* Hero Section */
.page-fishing-games-weapons-equipment-intro .hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-fishing-games-weapons-equipment-intro .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;charset=UTF-8,%3Csvg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M50 0L61.8 38.2L100 38.2L69.1 61.8L80.9 100L50 76.4L19.1 100L30.9 61.8L0 38.2L38.2 38.2Z"/%3E%3C/svg%3E') repeat;
    background-size: 100px;
    opacity: 0.1;
}

.page-fishing-games-weapons-equipment-intro .hero-section h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-fishing-games-weapons-equipment-intro .hero-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: #e0e0e0;
}

.page-fishing-games-weapons-equipment-intro .hero-section .btn {
    margin-top: 1.5rem;
}

/* Section Styling */
.page-fishing-games-weapons-equipment-intro .weapons-overview-section, 
.page-fishing-games-weapons-equipment-intro .ammo-items-section, 
.page-fishing-games-weapons-equipment-intro .strategy-section, 
.page-fishing-games-weapons-equipment-intro .why-choose-section, 
.page-fishing-games-weapons-equipment-intro .cta-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-weapons-equipment-intro .weapons-overview-section:nth-of-type(odd), 
.page-fishing-games-weapons-equipment-intro .strategy-section:nth-of-type(odd) {
    background-color: #f0f8ff; /* Lighter shade of primary for contrast */
}

.page-fishing-games-weapons-equipment-intro .ammo-items-section:nth-of-type(even), 
.page-fishing-games-weapons-equipment-intro .why-choose-section:nth-of-type(even) {
    background-color: #fffaf0; /* Lighter shade of secondary for contrast */
}

/* Grid Layouts */
.page-fishing-games-weapons-equipment-intro .weapon-grid, 
.page-fishing-games-weapons-equipment-intro .item-grid, 
.page-fishing-games-weapons-equipment-intro .strategy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.page-fishing-games-weapons-equipment-intro .weapon-item, 
.page-fishing-games-weapons-equipment-intro .item-card, 
.page-fishing-games-weapons-equipment-intro .strategy-item {
    background-color: #fefefe;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #007bff;
}

.page-fishing-games-weapons-equipment-intro .item-card {
    border-top-color: #ffc107;
}

.page-fishing-games-weapons-equipment-intro .weapon-item:hover, 
.page-fishing-games-weapons-equipment-intro .item-card:hover, 
.page-fishing-games-weapons-equipment-intro .strategy-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-fishing-games-weapons-equipment-intro .weapon-item h3, 
.page-fishing-games-weapons-equipment-intro .item-card h3, 
.page-fishing-games-weapons-equipment-intro .strategy-item h3 {
    color: #007bff;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.page-fishing-games-weapons-equipment-intro .item-card h3 {
    color: #ffc107;
}

/* Images */
.page-fishing-games-weapons-equipment-intro .responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages List */
.page-fishing-games-weapons-equipment-intro .advantages-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.page-fishing-games-weapons-equipment-intro .advantages-list li {
    background-color: #f7f7f7;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #ffc107;
    border-radius: 5px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-fishing-games-weapons-equipment-intro .advantages-list li strong {
    color: #007bff;
}

/* Call to Action Section */
.page-fishing-games-weapons-equipment-intro .cta-section {
    text-align: center;
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: #ffffff;
    padding: 80px 0;
    border-radius: 0;
    box-shadow: none;
}

.page-fishing-games-weapons-equipment-intro .cta-section h2 {
    color: #ffffff;
    border-bottom-color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.page-fishing-games-weapons-equipment-intro .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-fishing-games-weapons-equipment-intro .hero-section h1 {
        font-size: 2.8rem;
    }
    .page-fishing-games-weapons-equipment-intro h2 {
        font-size: 1.8rem;
    }
    .page-fishing-games-weapons-equipment-intro h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .page-fishing-games-weapons-equipment-intro .hero-section {
        padding: 60px 0;
    }
    .page-fishing-games-weapons-equipment-intro .hero-section h1 {
        font-size: 2.2rem;
    }
    .page-fishing-games-weapons-equipment-intro .hero-section p {
        font-size: 1rem;
    }
    .page-fishing-games-weapons-equipment-intro h2 {
        font-size: 1.6rem;
    }
    .page-fishing-games-weapons-equipment-intro .weapon-grid, 
    .page-fishing-games-weapons-equipment-intro .item-grid, 
    .page-fishing-games-weapons-equipment-intro .strategy-points {
        grid-template-columns: 1fr;
    }
    .page-fishing-games-weapons-equipment-intro .weapons-overview-section, 
    .page-fishing-games-weapons-equipment-intro .ammo-items-section, 
.page-fishing-games-weapons-equipment-intro .strategy-section, 
.page-fishing-games-weapons-equipment-intro .why-choose-section, 
.page-fishing-games-weapons-equipment-intro .cta-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-fishing-games-weapons-equipment-intro h1 {
        font-size: 1.8rem;
    }
    .page-fishing-games-weapons-equipment-intro h2 {
        font-size: 1.4rem;
    }
    .page-fishing-games-weapons-equipment-intro p, 
    .page-fishing-games-weapons-equipment-intro .advantages-list li, 
    .page-fishing-games-weapons-equipment-intro .btn {
        font-size: 0.95rem;
    }
    .page-fishing-games-weapons-equipment-intro .btn {
        padding: 10px 20px;
    }
}

/* Ensure color contrast for all text */
.page-fishing-games-weapons-equipment-intro p, 
.page-fishing-games-weapons-equipment-intro li {
    color: #333333; /* Dark gray for good contrast on light backgrounds */
}

.page-fishing-games-weapons-equipment-intro .hero-section p, 
.page-fishing-games-weapons-equipment-intro .cta-section p {
    color: #e0e0e0; /* Light gray for good contrast on dark/gradient backgrounds */
}

.page-fishing-games-weapons-equipment-intro .btn-primary {
    color: #ffffff;
}

.page-fishing-games-weapons-equipment-intro .btn-secondary {
    color: #333333; /* Dark gray for contrast on yellow */
}

.page-fishing-games-weapons-equipment-intro .weapon-item h3, 
.page-fishing-games-weapons-equipment-intro .strategy-item h3 {
    color: #007bff;
}

.page-fishing-games-weapons-equipment-intro .item-card h3 {
    color: #ffc107;
}

/* Ensure strong elements have sufficient contrast */
.page-fishing-games-weapons-equipment-intro p strong {
    color: #0056b3; /* Slightly darker primary for stronger emphasis and contrast */
}

.page-fishing-games-weapons-equipment-intro .hero-section p strong, 
.page-fishing-games-weapons-equipment-intro .cta-section p strong {
    color: #ffffff; /* White for strong on dark background */
}

.page-fishing-games-weapons-equipment-intro .advantages-list li strong {
    color: #007bff;
}