/*
Theme Name: GameLend
Theme URI: https://gamelend.by
Author: GameLend Team
Author URI: https://gamelend.by
Description: Светлая тема для лендинга проката игровых приставок GameLend.by
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gamelend
Tags: one-page, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout
*/

:root {
    --primary-color: #4A90E2;
    --secondary-color: #50C878;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E1E8ED;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 20px;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--bg-white);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    section { padding: 50px 0; }
    .section-title h2 { font-size: 2rem; }
}
/* Header Styles */
.site-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
}

.main-navigation {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-phone {
    background-color: var(--secondary-color);
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu-footer {
    display: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    padding: 100px 0;
    position: relative;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.95;
}

.social-icon:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.social-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: var(--bg-white);
    margin-bottom: 10px;
}

.feature-item p {
    opacity: 0.9;
}

/* Prices Section */
.prices-section {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.console-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin: 20px 0;
}

.pricing-body {
    margin: 30px 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.featured {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.price-item .period {
    font-weight: 500;
    color: var(--text-dark);
}

.price-item .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 0.9em;
}

.package-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.package-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

.package-info strong {
    color: var(--text-dark);
}

.pricing-extra {
    margin-top: 40px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.pricing-extra p {
    margin: 0 0 20px 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.pricing-extra strong {
    color: var(--primary-color);
}

.btn-phone {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background-color: #45b56b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(80, 200, 120, 0.3);
}


/* Games Section */
.games-section {
    background-color: var(--bg-white);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 30px 0 40px 0;
}

.game-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.game-cover {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ddd;
}

.game-card h3 {
    color: var(--text-dark);
    padding: 15px;
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

.games-note {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.games-note p {
    margin: 0;
    color: var(--text-dark);
}

/* Terms Section */
.terms-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.terms-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.terms-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
}

.terms-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.terms-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 10px 0;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.terms-list li:last-child {
    border-bottom: none;
}

.payment-cards {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-card {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: scale(1.05);
}

.payment-card.visa {
    background: linear-gradient(135deg, #1A1F71 0%, #0E4C92 100%);
}

.payment-card.mastercard {
    background: linear-gradient(135deg, #EB001B 0%, #F79E1B 100%);
}

.payment-card.belkart {
    background: linear-gradient(135deg, #006633 0%, #009944 100%);
}

.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.payment-icon {
    height: 35px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.payment-belcard {
    padding: 8px 20px;
    background: linear-gradient(135deg, #006633 0%, #009944 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contacts Section */
.contacts-section {
    background-color: var(--bg-light);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn {
    width: 100%;
}

.map-section {
    flex: 1;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.map-wrapper iframe {
    display: block;
    border: none;
    min-height: 450px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section a {
    color: var(--primary-color);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .header-phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
    }
    
    .mobile-menu-footer {
        display: block;
        padding: 20px;
        border-top: 1px solid var(--border-color);
        text-align: center;
    }
    
    .mobile-phone-btn {
        width: 100%;
        display: block;
        margin-bottom: 15px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 15px;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-social-icon {
        display: inline-block;
        width: 50px;
        height: 50px;
        transition: transform 0.3s ease;
    }
    
    .mobile-social-icon:hover {
        transform: scale(1.1);
    }
    
    .mobile-social-icon img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
