/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    width: 100%;
    height: 100%;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
}

/* Navbar Styling */
.navbar {
    background-color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo a {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
}

.navbar .nav-links {
    display: flex;
    list-style: none;
}

.navbar .nav-links li {
    margin-left: 30px;
}

.navbar .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    padding: 5px 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.navbar .nav-links li a:hover {
    color: #f39c12;
    border-bottom: 2px solid #f39c12;
}

/* Menu Toggle (Burger Icon) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .navbar .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: #222;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: none;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* For active menu toggle, animate the burger */
@media (max-width: 768px) {
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg);
        transform-origin: 5px 5px;
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: 5px 16px;
    }
}

.foto{
   width: 50px;
   height: 50px;
   transition: transform 0.3s ease;
    /*smooth transition */
}
.foto:hover{
     transform: scale(1.2);
}
/* General Body and Page Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #fafafa;
    color: #333;
}

h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

/* Accordion Button Styling */
.accordion-button {
    background-color: #3498db;
    color: white;
    padding: 18px;
    width: 100%;
    border: 1px solid #2980b9;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: block;
}

.accordion-button:hover {
    background-color: #2980b9;
    border-color: #21618c;
}

/* Accordion Toggle Checkbox */
.accordion-toggle {
    display: none;
}

/* Panel Content Styling */
.panel {
    display: none;
    background-color: #ecf0f1;
    padding: 20px;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Image Styling Inside Panel */
.museum-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

/* Paragraph Text Styling */
p {
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* Show Panel When Checkbox is Checked */
.accordion-toggle:checked + .panel {
    display: block;
}

/* Transition Effects for Panel */
.panel {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.accordion-toggle:checked + .panel {
    opacity: 1;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 600px) {
    .accordion-button {
        font-size: 16px;
    }

    h2 {
        font-size: 30px;
    }
}
/* General Body and Page Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #fafafa;
    color: #333;
}

.istoriuli{
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

/* Accordion Button Styling */
.accordion-button {
    background-color: #3498db;
    color: white;
    padding: 18px;
    width: 100%;
    border: 1px solid #2980b9;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: block;
}

.accordion-button:hover {
    background-color: #2980b9;
    border-color: #21618c;
}

/* Accordion Toggle Checkbox */
.accordion-toggle {
    display: none;
}

/* Panel Content Styling */
.panel {
    display: none;
    background-color: #ecf0f1;
    padding: 20px;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Image Styling Inside Panel */
.museum-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

/* Paragraph Text Styling */
.meore{
    font-size: 16px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* Show Panel When Checkbox is Checked */
.accordion-toggle:checked + .panel {
    display: block;
}

/* Transition Effects for Panel */
.panel {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.accordion-toggle:checked + .panel {
    opacity: 1;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 600px) {
    .accordion-button {
        font-size: 16px;
    }

    .istoriuli {
        font-size: 30px;
    }
}

