/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}
@keyframes float {
    0% { transform: translateY(15px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(15px); }
}

*:hover {
    animation: float 0.6s infinite ease-in-out;
    transform: perspective(3000px) rotateX(20deg) scale(0.9);
    
    text-decoration: underline;
    opacity: 1; /* Fixed opacity */
    cursor: pointer;
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.8);
    
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #e67e22;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav a:hover {
    color: #e67e22;
}

.icons span {
    margin-left: 15px;
    cursor: pointer;
    font-size: 18px;
}

.hero-section {
    position: sticky; 
    height: 100vh;
    width: 100%;
    background: url('bg1.webp') no-repeat center center/cover;
    display: inline;
    float: left;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-text:hover {
    transform: translateY(-10px);
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: fadeIn 3s ease-in-out;
}

.btn {
    padding: 10px 20px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #d35400;
}

.best-seller {
    text-align: center;
    padding: 50px 20px;
}

.best-seller h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.best-seller p {
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 250px;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-10px);
}

.product-item img {
    width: 100%;
    border-radius: 10px;
}

.product-item h3 {
    font-size: 20px;
    margin: 15px 0;
}

.product-item p {
    font-size: 18px;
    color: #e67e22;
    font-weight: bold;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 10px 20px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.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: #e67e22;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.close {
    float: right;
    cursor: pointer;
    font-size: 24px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}