/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-placeholder {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    /* Gold gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

header h1 {
    font-size: 24px;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #D4AF37;
    /* Metallic gold */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
    /* Gold to dark goldenrod */
    color: #333;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 90px;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero h3 {
    font-size: 32px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(5px);
}

.countdown-item span {
    font-size: 36px;
    font-weight: bold;
    display: block;
}

.countdown-item p {
    font-size: 16px;
    margin: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f5f5f5;
    /* Light gray */
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555;
}

.about-image {
    flex: 1;
    text-align: center;
}

.placeholder-image {
    background: #ddd;
    height: 300px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #999;
}

/* Products Section */
.products {
    padding: 100px 0;
}

.products h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
    /* Gold border on hover */
}

.product-icon {
    font-size: 48px;
    color: #D4AF37;
    /* Metallic gold */
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.product-card p {
    color: #777;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f5f5f5;
    /* Light gray */
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    margin-bottom: 40px;
}

.info-item i {
    font-size: 24px;
    color: #D4AF37;
    /* Metallic gold */
    margin-right: 20px;
    min-width: 30px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.info-item p {
    color: #777;
    font-size: 18px;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    /* Metallic gold */
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.btn {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    /* Gold gradient */
    color: #333;
    font-weight: 500;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    /* Darker gold gradient */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
    /* Bright gold */
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #FFD700;
    /* Bright gold */
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero h3 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-item span {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 10px 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
    
    .social-icons a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .hero h3 {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .countdown-item span {
        font-size: 20px;
    }
    
    .countdown-item p {
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}