/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000;
    overflow-x: hidden;
	padding-top: 120px; /* Базовый отступ для десктопа */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #f7ef8a);
}

.gradient-text {
    background: linear-gradient(45deg, #d4af37, #f7ef8a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.contacts span {
    color: #ccc;
    margin-right: 20px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.action-link {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s;
}

.action-link:hover {
    color: #f7ef8a;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
}

.logo .accent {
    color: #d4af37;
}

.tagline {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-box input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    width: 250px;
    outline: none;
}

.search-box input::placeholder {
    color: #ccc;
}

.search-box button {
    background: #d4af37;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.1rem;
}

.cart {
    position: relative;
    cursor: pointer;
}

.cart-icon {
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}






/* Hero Section */
.hero {
 position: relative;
    min-height: calc(100vh - 120px); /* Учитываем отступ */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    overflow: hidden;
    padding-top: 20px; /* Дополнительный отступ */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    color: #d4af37;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    overflow: hidden;
    padding-top: 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    color: #d4af37;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    height: 600px;
    overflow: visible;
}

.floating-bag {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 5;
}

.brand-text {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Четкое позиционирование каждой сумки */
.bag-1 {
    top: 50px;
    left: 30px;
    animation-delay: 0s;
}

.bag-2 {
    top: 50px;
    right: 30px;
    animation-delay: 2s;
}

.bag-3 {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
    animation-name: float3;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* Специальная анимация для bag-3 с центрированием */
@keyframes float3 {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateX(-50%) translateY(-20px) rotate(5deg); 
    }
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #f7ef8a);
    color: #000;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #000 0%, #111 100%);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.brand-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* Обновленные стили для логотипов брендов */

.brand-logo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    color: #000;
    font-size: 1.2rem;
    background-color: #fff;
    overflow: hidden;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.brand-logo-text {
    background: linear-gradient(45deg, #d4af37, #f7ef8a);
}

.brand-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.brand-card p {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 10px;
}

.items-count {
    color: #ccc;
    font-size: 0.9rem;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: #111;
}

.categories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-card.large {
    grid-row: span 2;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.cat-1 { background: linear-gradient(135deg, #d4af37, #f7ef8a); }
.cat-2 { background: linear-gradient(135deg, #2a2a2a, #1a1a1a); }
.cat-3 { background: linear-gradient(135deg, #333, #111); }
.cat-4 { background: linear-gradient(135deg, #444, #222); }

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.category-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.category-content p {
    color: #ccc;
    margin-bottom: 20px;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: #000;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.view-all {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.view-all:hover {
    color: #f7ef8a;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    position: relative;
    overflow: hidden;
    background-position: center bottom !important; /* добавьте эту строку */
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4af37;
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-badge.new {
    background: #10b981;
    color: #fff;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    margin-bottom: 10px;
}

.price {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: bold;
}

.old-price {
    color: #888;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-rating {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Quality Section */
.quality-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #111 0%, #000 100%);
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    gap: 30px;
}

.advantage {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.advantage-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, #d4af37, #f7ef8a);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage h3 {
    color: #fff;
    margin-bottom: 10px;
}

.advantage p {
    color: #ccc;
    line-height: 1.6;
}

.quality-image {
    position: relative;
    height: 500px;
}

.quality-showcase {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #000;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #f7ef8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    color: #fff;
    margin-bottom: 5px;
}

.review-rating {
    color: #d4af37;
}

.review-card p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-date {
    color: #888;
    font-size: 0.9rem;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #ccc;
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #d4af37, #f7ef8a);
    text-align: center;
}

.cta-content h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: #000;
    color: #d4af37;
}

.cta-section .btn-secondary {
    background: transparent;
    color: #000;
    border-color: #000;
}

.cta-section .btn-secondary:hover {
    background: #000;
    color: #d4af37;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d4af37;
}

.contact-info p {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d4af37;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.fab:hover {
    transform: scale(1.1);
}

.fab.whatsapp {
    background: #25d366;
    color: #fff;
}

.fab.telegram {
    background: #0088cc;
    color: #fff;
}

.fab.callback {
    background: #d4af37;
    color: #000;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 20px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .floating-bag {
        width: 120px;
        height: 120px;
    }
    
    .brand-text {
        font-size: 18px;
    }
    
    .bag-1 {
        top: 30px;
        left: 20px;
    }
    
    .bag-2 {
        top: 30px;
        right: 20px;
    }
    
    .bag-3 {
        bottom: 30px;
        left: 50%;
    }
}

@media (max-width: 480px) {
    .floating-bag {
        width: 100px;
        height: 100px;
    }
    
    .brand-text {
        font-size: 16px;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .bag-1 {
        top: 20px;
        left: 15px;
    }
    
    .bag-2 {
        top: 20px;
        right: 15px;
    }
    
    .bag-3 {
        bottom: 20px;
    }
}
/* Responsive Design */
@media (max-width: 768px) {

.body {
        padding-top: 80px; /* Меньший отступ для мобильной версии */
    }
    
    .hero {
        min-height: calc(100vh - 80px);
        padding-top: 40px; /* Больший отступ для мобильной версии */
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 20px; /* Дополнительный отступ сверху */
    }
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        display: none;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .search-box {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        height: auto;
    }
    
    .category-card.large {
        grid-row: span 1;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

 @media (max-width: 480px) {
        body {
            padding-top: 70px;
        }
        
        .hero {
            padding-top: 30px;
        }
        
        .hero-title {
            font-size: 2rem;
            margin-top: 10px;
        }
    }