/*
Theme Name: Shoes Affiliate Theme V3
Theme URI: https://offerdispose.com
Author: Md. Yousuf Ali
Description: Amazon Affiliate Shoes Review Theme
Version: 1.0
Text Domain: shoes-affiliate
*/
/* Reset */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.site-header {
    background: #111;
    color: #fff;
    padding: 15px 0;
}

.logo {
    margin: 0;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

/* Menu Fix */
.main-menu .menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 10px 0 0 0;
}

.main-menu .menu li {
    display: inline-block;
}

.main-menu .menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Content */
h1 {
    padding: 20px;
}

/* Footer */
.site-footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* HERO SECTION */
.hero {
    background: #f3f5f9;
    padding: 60px 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #1e73be;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-secondary {
    border: 2px solid #1e73be;
    color: #1e73be;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Image */
.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.top-reviews .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.post-card {
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
}

@media (max-width: 768px) {
    .top-reviews .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-reviews .container {
        grid-template-columns: 1fr;
    }
}