:root {
    --yellow: #FFD700;
    --black: #1a1a1a;
    --red: #DC143C;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--black);
    background-color: var(--white);
}

header {
    background: linear-gradient(90deg, var(--black), var(--red));
    color: var(--yellow);
    padding: 1.5rem 2rem;
    text-align: center;
    animation: slideDown 0.6s ease;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--black);
    border-bottom-color: var(--black);
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem;
}

section {
    margin: 1.5rem 0;
    padding: 2rem;
    border-radius: 8px;
}

.hero {
    background: linear-gradient(135deg, var(--black), var(--yellow));
    color: var(--white);
    text-align: center;
    padding: 2.5rem 2rem;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--red);
    margin: 0.5rem 0;
}

/* About Section */
.about {
    background: #f9f9f9;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about h2 {
    color: var(--red);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

.about p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.btn {
    background: var(--red);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.05);
}

.products {
    background: #f9f9f9;
}

.products h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--red);
    font-size: 1.5rem;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.product {
    background: var(--white);
    padding: 1.2rem;
    border: 2px solid var(--yellow);
    border-radius: 4px;
    text-align: center;
    transition: 0.3s;
}

.product:hover {
    border-color: var(--red);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
    transform: translateY(-5px);
}

.product h3 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.product p {
    color: #666;
    font-weight: normal;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    background: #f0f0f0;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.gallery h2 {
    text-align: center;
    color: var(--red);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.2);
}

.gallery-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--yellow), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 1rem;
}

/* Events Section */
.events {
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.events h2 {
    text-align: center;
    color: var(--red);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.events-intro {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event {
    background: #f9f9f9;
    padding: 1.5rem;
    border-left: 4px solid var(--red);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: center;
}

.event:hover {
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.2);
    transform: translateY(-5px);
}

.event h3 {
    color: var(--black);
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
}

.event-desc {
    color: #666;
    margin-top: 0.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--black), var(--yellow));
    color: var(--white);
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.contact h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--yellow);
    font-size: 1.1rem;
}

.contact-info p {
    margin-bottom: 0.7rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info a {
    color: var(--yellow);
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    color: var(--red);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form h3 {
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

footer {
    background: var(--black);
    color: var(--yellow);
    text-align: center;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    border-top: 3px solid var(--red);
}

footer p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.95rem;
}

.social-link:hover {
    color: var(--red);
}

/* ===== Navigation Bar ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo h1 {
    color: var(--primary-yellow);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: glow 2s ease-in-out infinite;
}

.logo-icon {
    font-size: 2.5rem;
    animation: spin 3s linear infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px var(--primary-yellow);
    }
    50% {
        text-shadow: 0 0 20px var(--primary-red), 0 0 30px var(--primary-yellow);
    }
}

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

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

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-red));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-red) 50%, var(--primary-yellow) 100%);
    color: var(--primary-white);
    padding: 100px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.spiral-container {
    margin: 2rem 0;
    perspective: 1000px;
}

.spiral {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: conic-gradient(
        from 0deg,
        var(--primary-yellow) 0deg,
        var(--primary-red) 120deg,
        var(--primary-yellow) 240deg,
        var(--primary-yellow) 360deg
    );
    border-radius: 50%;
    animation: rotateSpin 4s linear infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset -5px -5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes rotateSpin {
    from {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
    to {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 2rem 0 1rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 0.8s ease 0.2s both;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
    animation: slideInRight 0.8s ease 0.4s both;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-red));
    color: var(--primary-black);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 1s ease-in-out infinite 0.8s;
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.cta-button:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 10px 50px rgba(255, 215, 0, 0.6);
    }
}

/* ===== Products Section ===== */
.products {
    padding: 80px 2rem;
    background: linear-gradient(180deg, var(--primary-white) 0%, #f5f5f5 100%);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-black);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--primary-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.2);
    border-color: var(--primary-red);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.product-card:nth-child(2) .product-icon {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) .product-icon {
    animation-delay: 0.4s;
}

.product-card:nth-child(4) .product-icon {
    animation-delay: 0.6s;
}

.product-card h3 {
    color: var(--primary-black);
    margin: 1rem 0;
    font-size: 1.3rem;
}

.product-card p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: bold;
}

/* ===== About Section ===== */
.about {
    background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
    color: var(--primary-white);
    padding: 80px 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.feature-item {
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--primary-yellow);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(220, 20, 60, 0.1);
    border-left-color: var(--primary-red);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-yellow);
    display: block;
    margin-bottom: 0.5rem;
}

.feature-item:hover .feature-icon {
    color: var(--primary-red);
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(180deg, var(--primary-white) 0%, #f5f5f5 100%);
    padding: 80px 2rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.3);
}

.submit-button {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--primary-black);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.3);
}

.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.5);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    padding: 2rem;
    border-top: 3px solid var(--primary-yellow);
}

.footer p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }
}
