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

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

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

.logo-container {
    text-align: center;
    padding: 60px 20px 30px;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    animation: spin 20s linear infinite;
}

.logo svg {
    width: 100%;
    height: 100%;
}

.site-title {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: lowercase;
}

.clock-container {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 1px;
}

.clock-time {
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.clock-cities {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.clock-cities button {
    background: none;
    border: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    padding: 0;
    color: #000;
}

.clock-cities button:hover {
    opacity: 0.8;
}

.clock-cities button.active {
    opacity: 1;
    text-decoration: underline;
}

/* Navigation */
nav {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 0 auto;
    max-width: 800px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

nav a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    cursor: pointer;
}

nav a:hover {
    opacity: 0.5;
}

nav a.active {
    text-decoration: underline;
}

/* Page Content */
.page {
    display: none;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}

.page.active {
    display: block;
}

/* Home Page */
.home-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 20px;
}

.home-content h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.home-content p {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Collection Page */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.gallery-item {
    aspect-ratio: 1;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 1px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    background-color: #000;
    color: #fff;
}

/* Shop Page */
.shop-notice {
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 40px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

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

.shop-item-image {
    aspect-ratio: 1;
    border: 1px solid #000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background-color 0.3s, color 0.3s;
}

.shop-item:hover .shop-item-image {
    background-color: #000;
    color: #fff;
}

.shop-item h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.shop-item .price {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.buy-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.buy-btn:hover {
    opacity: 0.7;
}

/* About Page */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
    letter-spacing: 0.5px;
}

.about-content h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Contact Page */
.contact-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.contact-form {
    text-align: left;
    margin-bottom: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #000;
    background: transparent;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact-form button:hover {
    opacity: 0.8;
}

#thank-you-message h2 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.back-button {
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.back-button:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px 40px;
    border-top: 1px solid #000;
    margin-top: 80px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-links a {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.5;
}

.copyright {
    font-size: 11px;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* Page Titles */
.page-title {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: lowercase;
}

@media (max-width: 768px) {
    nav ul {
        gap: 30px;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

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

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