/* Global Styles */
:root {
    --primary-color: #e65100;
    --secondary-color: #ff8f00;
    --text-color: #333;
    --light-color: #fff;
    --dark-color: #222;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.hero-image {
    position: relative;
    width: 250px;
    height: 250px;
    animation: rotate 20s linear infinite;
}

.hero-image:nth-child(2) {
    animation: rotate-reverse 20s linear infinite;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    transition: all 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* About Section */
.about {
    background: #f9f9f9;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
}

.product-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
}

/* Swiper Styles */
.swiper {
    padding: 2rem 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Contact Section */
.contact {
    background: #f9f9f9;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-form .form-control {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--light-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-image {
        width: 200px;
        height: 200px;
    }
    .hero-images {
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .hero-image {
        width: 180px;
        height: 180px;
    }
    .hero-images {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .hero {
        height: auto;
        padding: 100px 0 50px;
    }

    .about-text {
        margin-top: 2rem;
    }

    .product-card {
        margin-bottom: 2rem;
    }

    .hero-images {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-image {
        width: 150px;
        height: 150px;
    }
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
} 