@font-face {
    font-family: 'SuisseSign';
    src: url('fonts/Suisse%20Sign/SuisseSign-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuisseSign';
    src: url('fonts/Suisse%20Sign/SuisseSign-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuisseSign';
    src: url('fonts/Suisse%20Sign/SuisseSign-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'SuisseSign', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.fade {
    animation: fade 2s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
}

.logo {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.tagline {
    font-size: clamp(14px, 4vw, 24px);
    font-weight: 300;
    margin-bottom: 10px;
    color: #ccc;
}

.location {
    font-size: clamp(12px, 3vw, 18px);
    color: #888;
    margin-bottom: 50px;
}

.btn-enter {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 18px 50px;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-enter:hover {
    background: transparent;
    color: #fff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: #666;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #111;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Info Section */
.info-section {
    padding: 100px 20px;
    background: #0a0a0a;
}

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

.info-content h2 {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 600;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature {
    text-align: left;
    padding: 30px;
    background: transparent;
    border: 1px solid #222;
    transition: border-color 0.3s ease;
}

.feature:hover {
    border-color: #444;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature p {
    font-size: 15px;
    line-height: 1.6;
    color: #999;
}

.btn-catalog {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-catalog:hover {
    background: #fff;
    color: #000;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: #0a0a0a;
}

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

.contact-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-intro {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

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

.contact-item h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #999;
}

.contact-item p {
    color: #fff;
    font-size: 18px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: #111;
    border-radius: 8px;
    border: 1px solid #222;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px 30px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #ccc;
    transform: translateY(-2px);
}

/* Footer */
.landing-footer {
    padding: 60px 20px;
    text-align: center;
    background: #000;
    border-top: 1px solid #222;
}

.landing-footer p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .btn-enter {
        padding: 14px 35px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content h2 {
        font-size: 32px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
