body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
    color: #333;
}

header {
    background-color: #ffa500; /* ნარინჯისფერი */
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
}

h1, h2 {
    color: #ffa500; /* ნარინჯისფერი */
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img,
.video-wrapper {
    width: 15%; /* ვიდეოების და ფოტოების სიგანე */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.gallery img:hover,
.video-wrapper:hover {
    transform: translateY(-10px); /* მაუსის მიტანის დროს მოძრაობის ეფექტი */
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.expanded-img,
.expanded-video {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 80%;
    max-height: 80%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    border-radius: 8px;
    box-shadow: none; /* ჩარჩოს ჩრდილის გამორთვა */
    background-color: transparent; /* ფონის გამჭვირვალობა */
    border: none; /* პლეერის ჩარჩოს გამორთვა */
    outline: none; /* პლეერის outline გამორთვა */
}

.expanded-video {
    width: 80%;
    background-color: transparent; /* ფონის გამჭვირვალობა */
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

.overlay.active {
    display: block;
}
