/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #c0c0c0;
    background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-weight: bold;
}

/* Navigation */
nav {
    background: #000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(192, 192, 192, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #c0c0c0;
}

nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-family: 'Libre Bodoni', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #c0c0c0;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-family: 'Libre Bodoni', serif;
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    background-color: rgba(192, 192, 192, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('homepage.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #c0c0c0;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Libre Bodoni', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: #c0c0c0;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #c0c0c0;
}

.cta-button {
    font-family: 'Libre Bodoni', serif;
    display: inline-block;
    background: #c0c0c0;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 192, 192, 0.5);
    background: #fff;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #000;
}

.section-title {
    font-family: 'Libre Bodoni', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #c0c0c0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #c0c0c0;
    border-radius: 2px;
}

/* About Section */
.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content p {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-item h3 {
    font-family: 'Libre Bodoni', serif;
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #c0c0c0;
}

/* Products Section */
.products-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-header p {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #333;
    position: relative;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(192, 192, 192, 0.2);
    border-color: #c0c0c0;
}

.product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(192, 192, 192, 0.3);
}

.product-item::before {
    content: 'Click to enlarge';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #c0c0c0;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.product-item:hover::before {
    opacity: 1;
}

/* Contact Section */
.contact-container {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.1);
    max-width: 800px;
    margin: 2rem auto;
    border: 2px solid #c0c0c0;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #c0c0c0;
}

.company-info {
    color: #c0c0c0;
    line-height: 1.8;
}

.company-info h3 {
    font-family: 'Libre Bodoni', serif;
    color: #c0c0c0;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.company-info p {
    margin-bottom: 1rem;
    color: #c0c0c0;
}

.company-info ul {
    list-style: none;
    margin-left: 0;
}

.company-info li {
    margin-bottom: 0.5rem;
    color: #c0c0c0;
}

/* Call to Action */
.cta-section {
    text-align: center;
    margin: 4rem 0;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: #c0c0c0;
}

.cta-section p {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #c0c0c0;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 2px solid #c0c0c0;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .contact-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    font-family: 'Libre Bodoni', serif;
    padding: 0.75rem 1rem;
    border: 2px solid #c0c0c0;
    background: transparent;
    color: #c0c0c0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.pagination-btn:hover:not(:disabled) {
    background: #c0c0c0;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 192, 192, 0.3);
}

.pagination-btn.active {
    background: #c0c0c0;
    color: #1a1a1a;
    border-color: #c0c0c0;
    font-weight: 600;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #666;
    color: #666;
}

.pagination-btn:disabled:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    color: #666;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        min-width: 40px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Modal/Lightbox Styles */
.modal-overlay {
    backdrop-filter: blur(5px);
}

.modal-close:hover {
    color: #fff !important;
    transform: scale(1.1);
}

.modal-image {
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.02);
}

.modal-content {
    /* Add your modal content styles here if needed */
}

.modal-title {
    /* Add your modal title styles here if needed */
}