* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

:root {
    --dark-green: #112d1d;
    --forest-green: #1a4329;
    --gold: #c5a059;
    --light-gold: #dfc48c;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #b4d2ff;
    background-image: url('../img/forest.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
    transition: background-color 0.1s linear;
}

header {
    background-color: rgba(17, 45, 29, 0.95);
    padding: 20px;
    border-bottom: 3px solid var(--gold);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--gold);
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--gold);
}

.hero {
    margin-top: 75px;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 75px);
}

.hero-content {
    max-width: 750px;
    width: 100%;
    background-color: rgba(17, 45, 29, 0.85);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 50px 40px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    border: 1px solid var(--gold);
    display: inline-block;
    padding: 5px 15px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--light-gold);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 56px;
    letter-spacing: 5px;
    margin-bottom: 5px;
    font-weight: 800;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.hero h2 {
    font-size: 26px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 600px;
}

.btn {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 14px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.features {
    background-color: rgba(17, 45, 29, 0.75);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    scroll-margin-top: 75px; 
    backdrop-filter: blur(2px);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.feature-item {
    flex: 1;
    min-width: 190px;
    max-width: 220px;
    padding: 25px 15px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 8px;
    background-color: rgba(11, 30, 19, 0.85);
}

.feature-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-gold);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 12px;
    color: #cbd5e1;
}

.specs-table-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(11, 30, 19, 0.92) !important;
    border: 2px solid var(--gold) !important;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    display: block !important;
}

.specs-table-container h2 {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: bold;
}

.specs-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-top: 25px;
    text-align: left;
    display: table !important;
}

.specs-table th {
    background-color: rgba(197, 160, 89, 0.15) !important;
    color: var(--light-gold) !important;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 14px 18px;
    border-bottom: 2px solid var(--gold) !important;
}

.specs-table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2) !important;
    font-size: 15px;
    color: #f1f5f9 !important;
}

.specs-table tr:last-child td {
    border-bottom: none !important;
}

.product-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    scroll-margin-top: 90px;
}

.shop-card {
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid #cbd5e1;
    border-top: 5px solid var(--gold);
    border-radius: 8px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-block h2 {
    font-size: 32px;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: bold;
}

.intro-p {
    color: #334155;
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.price-box {
    font-size: 34px;
    color: var(--forest-green);
    font-weight: bold;
    background-color: #f1f5f9;
    padding: 12px 25px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.price-box span {
    font-size: 16px;
    color: #64748b;
    font-weight: normal;
}

.phone-box {
    background-color: #f0fdf4;
    border: 2px dashed #bbf7d0;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.phone-box p {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.phone-link {
    display: inline-block;
    background-color: var(--forest-green);
    color: var(--white);
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(26, 67, 41, 0.2);
}

.phone-box span {
    display: block;
    font-size: 13px;
    color: #64748b;
}

footer {
    background-color: rgba(17, 45, 29, 0.95);
    color: #cbd5e1;
    text-align: center;
    padding: 40px 20px;
    border-top: 3px solid var(--gold);
    font-size: 14px;
}

footer .company-name {
    color: var(--white);
    font-weight: bold;
}

.copy {
    color: var(--gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .hero h1 { font-size: 38px; }
    .hero { margin-top: 110px; padding: 60px 10px; }
    .phone-link { font-size: 20px; padding: 10px 20px; }
    .shop-card { padding: 30px 20px; }
    .specs-table th, .specs-table td { padding: 10px 12px; font-size: 13px; }
    .specs-table-container { padding: 15px; }
}
