/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn:hover {
    background: linear-gradient(45deg, #b8860b, #d4af37);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c2c2c;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: #d4af37;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
    border-radius: 5px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #d4af37;
}

/* Hero Slider Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
}

.slide-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 20px;
}

.slider-nav button {
    background: rgba(212, 175, 55, 0.7);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-nav button:hover {
    background: rgba(184, 134, 11, 0.9);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

/* Products Section */
.products, .products-page {
    padding: 120px 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 20px 20px 5px;
    font-size: 1.6rem;
    color: #2c2c2c;
    font-weight: 600;
}

.product-card p {
    padding: 0 20px 15px;
    color: #666;
    font-size: 1rem;
}

.product-card .price {
    display: block;
    padding: 0 20px 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
}

/* Gallery Section */
.gallery, .gallery-page {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f4 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* News Section */
.news, .news-page {
    padding: 120px 0;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.news-content .date {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: #b8860b;
    letter-spacing: 1px;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* About Section */
.about, .about-page {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7f4 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c2c2c;
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact, .contact-page {
    padding: 120px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .info-item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.contact-info .info-item i {
    font-size: 1.8rem;
    color: #d4af37;
    margin-right: 25px;
    min-width: 30px;
    padding-top: 5px;
}

.contact-info .info-item h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #2c2c2c;
}

.contact-info .info-item p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 25px;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    height: 180px;
    resize: vertical;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    grid-column: 1 / -1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-logo p {
    color: #aaa;
    line-height: 1.7;
}

.footer-links h3,
.social-media h3 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.4rem;
}

.footer-links h3::after,
.social-media h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links ul li a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-links ul li a i {
    margin-right: 10px;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #444;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1,
    .slide-content h1 {
        font-size: 3.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        width: 100%;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        top: 80px;
        left: -100%;
        transition: 0.5s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 20px 0;
    }
    
    .hero-content h1,
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content h2,
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .product-grid,
    .gallery-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        gap: 40px;
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .about-image {
        width: 100%;
        max-width: 100%;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .hero-content h1,
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2,
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p,
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    header .container {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content h2 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        width: 100%;
        max-width: 100%;
    }
    
    .about-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
    }
}