@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:ital,wght@0,100..900;1,100..900&family=Cairo:wght@300;400;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Cairo", "Roboto", sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #000000;
    color: #fff;
    overflow-x: hidden;
    direction: rtl;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    letter-spacing: 2px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: #d6cfa4;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #d6cfa4;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.cart-icon {
    font-size: 20px;
    color: #d6cfa4;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 80px 30px;
    transition: right 0.5s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav-link {
    display: block;
    color: #f0f0f0;
    text-decoration: none;
    font-size: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.mobile-nav-link:hover {
    color: #d6cfa4;
    padding-right: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    background: #000000;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(214, 207, 164, 0.1), transparent, transparent);
    transform: translate(-50%, -50%);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#cans {
    position: absolute;
    width: 30%;
    min-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

#leaf {
    position: absolute;
    width: 12%;
    min-width: 100px;
    top: 60%;
    left: 10%;
    transform: translate(-50%, -50%);
    z-index: 4;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

#blackberry1 {
    position: absolute;
    width: 15%;
    min-width: 80px;
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

#blackberry2 {
    position: absolute;
    width: 15%;
    min-width: 100px;
    top: 65%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

#blackberry3 {
    position: absolute;
    width: 9%;
    min-width: 60px;
    top: 35%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

#coconoutleaf {
    position: absolute;
    width: 20%;
    min-width: 150px;
    top: 10%;
    right: 0;
    z-index: 4;
}

/* Hero Title */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
}

.hero-title {
    color: rgba(255, 255, 255, 0.3);
    font-size: 25vw;
    font-weight: 900;
    letter-spacing: 15px;
    font-family: "Anton", sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    animation: fadeInScale 2s ease-out forwards;
    opacity: 0;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 20%;
    right: 10%;
    z-index: 5;
    text-align: right;
    max-width: 500px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #d6cfa4;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #d6cfa4;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    display: inline-block;
    border: 2px solid #d6cfa4;
    color: #d6cfa4;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #d6cfa4;
    color: #000;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #d6cfa4;
    font-family: "Anton", sans-serif;
    letter-spacing: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(214, 207, 164, 0.2);
}

.product-image {
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #d6cfa4;
}

.product-info p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.product-info .btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

/* Collections Section */
.collections-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.collection-item {
    padding: 40px 20px;
    background: rgba(214, 207, 164, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.collection-item:hover {
    background: rgba(214, 207, 164, 0.2);
    transform: translateY(-5px);
}

.collection-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #d6cfa4;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #d6cfa4;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #d6cfa4;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(214, 207, 164, 0.1);
    border-radius: 50%;
    color: #d6cfa4;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d6cfa4;
    color: #000;
    transform: translateY(-3px);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d6cfa4;
    background: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .btn {
    align-self: flex-start;
    padding: 15px 40px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    font-family: "Anton", sans-serif;
    color: #d6cfa4;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

footer p {
    opacity: 0.7;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 20vw;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 25vw;
        letter-spacing: 8px;
    }
    
    #cans {
        width: 50%;
        min-width: 250px;
    }
    
    #leaf,
    #blackberry1,
    #blackberry2,
    #blackberry3,
    #coconoutleaf {
        display: none; /* إخفاء العناصر الصغيرة على الجوال لتحسين الأداء */
    }
    
    .hero-content {
        bottom: 15%;
        right: 5%;
        left: 5%;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .btn {
        width: 100%;
    }
    
    .logo {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30vw;
        letter-spacing: 5px;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn, .btn-outline {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .mobile-nav {
        width: 100%;
    }
}