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

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: red;
    height: 17vh;
    min-height: 80px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo {
    z-index: 1;
    width: 14%;
    min-width: 100px;
    padding: 0 20px;
}

.nav {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
}

li, li a {
    list-style: none;
    margin: 0 15px;
    padding: 5px 0;
    display: inline;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: color 0.3s ease;
}

li a:hover {
    color: #ffeb3b;
}

.banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 120px 20px 60px;
    text-align: center;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/image.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.headline {
    font-size: 64px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.button-main {
    background-color: #fff;
    color: #e74c3c;
    border: 2px solid #fff;
}

.button-main:hover {
    background-color: #ffeb3b;
    color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.button-main:active {
    transform: translateY(-1px);
}

.button-alt {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.button-alt:hover {
    background-color: #fff;
    color: #e74c3c;
    transform: translateY(-3px);
}

.button-alt:active {
    transform: translateY(-1px);
}

.menu_v2 {
    background-color: rgb(245, 93, 93);
    width: 100%;
    margin-top: 10vh;
    padding: 30px 0;
    overflow-x: auto;
    overflow-y: hidden;
}

.menu_v2 ul {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0 20px;
    gap: 20px;
    width: max-content;
}

.li-menu_v2 {
    flex-shrink: 0;
    width: 300px;
    list-style: none;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.li-menu_v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.li-menu_v2 img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
}

.menu-info {
    padding: 15px;
    text-align: center;
    background-color: #fff;
}

.menu-name {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.order-btn {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-btn:hover {
    background-color: #c0392b;
}

.menu_v2::-webkit-scrollbar {
    height: 10px;
}

.menu_v2::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.menu_v2::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 5px;
}

.menu_v2::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

.heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.subheading {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.offers {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.offers .heading,
.offers .subheading {
    color: #fff;
}

.plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.plan {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    max-width: 350px;
    min-width: 280px;
    position: relative;
    transition: all 0.3s ease;
}

.plan:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.plan.featured {
    border: 3px solid #ffeb3b;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #ffeb3b;
    color: #c0392b;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e74c3c;
    font-weight: bold;
}

.price-tag {
    margin-bottom: 30px;
}

.amount {
    font-size: 48px;
    font-weight: 900;
    color: #1a1a1a;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    padding: 0;
}

.features li {
    padding: 10px 0;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.button-outline {
    background-color: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.button-outline:hover {
    background-color: #e74c3c;
    color: #fff;
}

.reviews {
    padding: 80px 20px;
    background-color: #1a1a1a;
    color: #fff;
}

.reviews .heading {
    color: #fff;
}

.reviews .subheading {
    color: #ccc;
}

.slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider input[type="radio"] {
    display: none;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.review {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}

.quote {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #e0e0e0;
}

.author {
    font-size: 18px;
    font-weight: 600;
    color: #ffeb3b;
    margin-bottom: 5px;
}

.position {
    color: #999;
    font-size: 14px;
}

.dots {
    text-align: center;
    margin-top: 30px;
}

.dots label {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #666;
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dots label:hover {
    background-color: #e74c3c;
}

#r1:checked ~ .slides {
    transform: translateX(0);
}

#r2:checked ~ .slides {
    transform: translateX(-100%);
}

#r3:checked ~ .slides {
    transform: translateX(-200%);
}

#r1:checked ~ .dots label:nth-child(1),
#r2:checked ~ .dots label:nth-child(2),
#r3:checked ~ .dots label:nth-child(3) {
    background-color: #e74c3c;
    transform: scale(1.3);
}

.footer {
    background-color: #1a1a1a;
    padding: 40px 20px 10px;
    color: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.column h3 {
    color: #e74c3c;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

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

.column ul li {
    margin: 10px 0;
}

.column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.column ul li a:hover {
    color: #e74c3c;
    padding-left: 5px;
}

.socials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social {
    width: 45px;
    height: 45px;
    background-color: #e74c3c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social:hover {
    background-color: #ffeb3b;
    color: #c0392b;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.copyright {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.copyright p {
    margin: 0;
}

.copyright a {
    color: #888;
    text-decoration: none;
}

.copyright a:hover {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .headline {
        font-size: 48px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .header {
        height: auto;
        min-height: 70px;
        padding: 10px 0;
    }
    
    .logo {
        width: 25%;
        padding: 10px;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    li, li a {
        font-size: 1rem;
        margin: 0 8px;
    }
    
    .menu_v2 {
        margin-top: 5vh;
    }
    
    .li-menu_v2 {
        width: 250px;
    }
    
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: rgba(192, 57, 43, 0.98);
        transition: left 0.3s ease;
        padding: 20px 0;
        height: calc(100vh - 80px);
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    li, li a {
        display: block;
        margin: 0;
        padding: 15px 0;
        font-size: 1.2rem;
    }
    
    .menu-toggle:checked ~ .header .nav {
        left: 0;
    }
    
    .menu-toggle:checked ~ .header .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle:checked ~ .header .hamburger span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .header .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .header {
        height: 80px;
        padding: 10px;
    }
    
    .logo {
        width: 40%;
        padding: 10px;
    }
    
    .banner {
        padding: 100px 20px 40px;
        min-height: 80vh;
    }
    
    .headline {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .actions {
        flex-direction: column;
        align-items: center;
    }
    
    .button {
        width: 100%;
        max-width: 300px;
    }
    
    .heading {
        font-size: 32px;
    }
    
    .menu_v2 {
        margin-top: 3vh;
        padding: 20px 0;
    }
    
    .menu_v2 ul {
        padding: 0 10px;
        gap: 15px;
    }
    
    .li-menu_v2 {
        width: 220px;
        min-width: 220px;
    }
    
    .li-menu_v2 img {
        height: 200px;
    }
    
    .menu-name {
        font-size: 16px;
    }
    
    .order-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .offers {
        padding: 60px 15px;
    }
    
    .plans {
        flex-direction: column;
        align-items: center;
    }
    
    .plan {
        max-width: 100%;
    }
    
    .reviews {
        padding: 60px 15px;
    }
    
    .quote {
        font-size: 18px;
    }
    
    .footer {
        padding: 30px 15px 10px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .column ul li {
        margin: 8px 0;
    }
    
    .column ul li a {
        font-size: 14px;
    }
    
    .copyright {
        font-size: 12px;
        padding: 15px 0;
    }
}

