/* Universalus stilius */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Sticky Navigation */
header {
    background-color: #000;
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

#sticky-navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

#sticky-navbar ul li {
    margin: 0 20px;
}

#sticky-navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

/* Skambinti dabar juosta */
.sticky-cta-bar {
    background-color: #ff9800;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 200;
}

.cta-button {
    background-color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    background-color: #333;
    color: white;
    padding: 50px 20px;
    text-align: center;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-section .logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 0px;
}

.hero-section h1 {
    font-size: 32px;
    max-width: 800px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    max-width: 800px;
}

/* About Section */
.about-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

.about-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery Section */
.photo-gallery {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-gallery h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    width: 250px;
    height: 200px;
    object-fit: cover;
   border-radius: 20%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 80%;
    max-width: 800px;
    margin: auto;
    transition: transform 0.3s ease; /* Kad būtų sklandus perėjimas */
}

/* Rodyklės */
.modal-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Padeda rodyklėms būti skirtinguose šonuose */
    transform: translateY(-50%);
}

.modal-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 30px;
    border: none;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.modal-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Uždarimo mygtukas */
.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    background-color: transparent;
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
}


/* Footer Section */
footer {
    background-color: #333;
    color: white;
    padding: 60px;
    text-align: center;
}
a[href*="telef:+37067721861"] {
color: #ff9800;
}


footer .social-links {
    margin-top: 20px;
}

footer .social-links a {
    margin: 0 10px;
    display: inline-block;
}

footer .social-links img {
    width: 30px;
    height: 30px;
}