* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #ff6b6b;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav {
    background-color: #333;
    padding: 1rem;
    display: flex;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #ff6b6b;
    transform: scale(1.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.info-box h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.info-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-item {
    margin-bottom: 0.5rem;
}

.info-item strong {
    display: inline-block;
    width: 100px;
}

.gallery-container {
    margin-top: 2rem;
}

.gallery-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #ff6b6b;
    font-size: 2rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s ease;
}

.hype-gallery {
    text-align: center;
    margin-top: 3rem;
}

.hype-title {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hype-button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.hype-button:hover {
    background-color: #ff5252;
    transform: scale(1.05);
}

.hype-image {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Chat page styles */
.chat-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chat-title {
    background-color: #ff6b6b;
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

.chat-messages {
    height: 400px;
    overflow-y: auto;
    padding: 1rem;
}

.message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    max-width: 80%;
}

.user-message {
    background-color: #e3e3e3;
    margin-left: auto;
}

.cat-message {
    background-color: #ff6b6b;
    color: white;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #e3e3e3;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 0.5rem;
}

.chat-input button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
}

#mainContent, #chatContent, #hypeGalleryContent, #fomaContent {
    display: none;
}

#mainContent.active, #chatContent.active, #hypeGalleryContent.active, #fomaContent.active {
    display: block;
}

.pasek {
    background-color: #facc15;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 40px;
  }

  .tekst {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    animation: move 6s linear infinite;
    font-size: 20px;
    line-height: 40px;
    color: black;
  }

  @keyframes move {
    0% { left: 100%; }
    100% { left: -100%; }
  }