
@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i&subset=greek-ext');


body {
    background: linear-gradient(135deg, #6B4226, #4F9D65);
    color: #fff;
    font-family: Arial, sans-serif;
    padding-top: 60px; /* Added space for fixed navbar */
}


#Container-outer{
    width:100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.navbar-brand {
    font-weight: bold;
}

.hero-section {
    text-align: center;
   
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;

}

#whatispmms{
    color:#ddd;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
   
}

.section-header {
    text-align: center;
    font-size: 2rem;
    margin: 30px 0 20px;
    color: #f9f9f9;
}

.section-content {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
}

.request-guide {
    background-color: #ffffff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}  
/* Gallery Section */
.gallery-section {
    padding: 3rem 0;
    background-color: #eceff1; /* Light gray background */
}

.gallery-section .section-header {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff; /* White background for images */
    cursor: pointer;
    margin-bottom: 1.5rem; /* Added spacing between items */
}

.gallery-section .gallery-item img {
    width: 100%;
    height: 200px; /* Fixed height for consistent image sizes */
    object-fit: cover; /* Ensures the image fits within the container */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-section .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.gallery-section .gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem;
}

.gallery-section .gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-section .clickable-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-section {
        padding: 2rem 0;
    }

    .gallery-section .section-header {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .gallery-section .gallery-item img {
        height: 180px; /* Slightly smaller height for medium screens */
    }

    .gallery-section .overlay {
        font-size: 1.1rem;
    }
}

@media (max-width: 468px) {
    .gallery-section {
        padding: 1.5rem 0;
    }

    .gallery-section .section-header {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .gallery-section .gallery-item img {
        height: 150px; /* Smaller height for small screens */
    }

    .gallery-section .overlay {
        font-size: 1rem;
        padding: 0.5rem;
    }

    .gallery-section .clickable-icon {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
}

@media (max-width: 375px) {
    .gallery-section .section-header {
        font-size: 1.25rem;
    }

    .gallery-section .gallery-item img {
        height: 120px; /* Even smaller height for extra small screens */
    }

    .gallery-section .overlay {
        font-size: 0.9rem;
    }
}




.modal img {
    width: 100%;
    height: auto;
}




.modal-content {
border-radius: 10px;
overflow: hidden;
}

.modal-header {
background: linear-gradient(135deg, #6B4226, #4F9D65);
}

.modal-body img {
max-height: 80vh;
animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}



@media (max-width: 768px) {
    .gallery-section .section-header {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .gallery-section .section-header {
        font-size: 1.5rem;
    }
}



.faq-section {
    margin-top: 40px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.card-header {
    background-color: #6B4226;
    color: white;
}

.footer {
    background-color: #4F9D65;
    padding: 20px;
    color: white;
    text-align: center;
    margin-top: 20px;
}

/* Image Section */
.image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

/* Scrollable Navbar */
.navbar .navbar-toggler {
    border: none;
}


.gallery-img {
width: 700px; /* Ensure images fill the container's width */
height: 300px; /* Set a fixed height for all images */
object-fit: cover; /* Ensures images fit the container, maintaining aspect ratio without distortion */
}



.faq-section {
background-color: #f4f8fa;
border-radius: 12px;
box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.section-header h2 {
font-size: 2.5rem;
font-weight: bold;
color: #3a3a3a;
text-align: center;
margin-bottom: 40px;
}

/* Accordion Button Styling */
.accordion-button {
font-weight: bold;
color: #2c3e50;
background-color: #ecf0f1;
border: 1px solid #ccc;
transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:hover {
background-color: #bdc3c7;
color: #1a1a1a;
}

.accordion-button:not(.collapsed) {
background-color: #3498db;
color: white;
border-color: #2980b9;
}

.accordion-button i {
margin-left: 10px;
transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i {
transform: rotate(180deg);
}

/* Accordion Item Card Style */
.accordion-item {
border: 1px solid #ddd;
border-radius: 8px;
margin-bottom: 15px;
background-color: #ffffff;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-body {
font-size: 1.1rem;
color: #34495e;
background-color: #ffffff;
padding: 15px;
border-top: 1px solid #ddd;
}



/* Hover Effect for Accordion Items */
.accordion-item:hover {
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

#requests{
    position:relative;
    right:0rem;
    
   
}

.dropdown-item.active {
    background-color: #28a745 !important; /* Green highlight */
    color: white !important;
    font-weight: bold;
}

#dropdown_login{
    position: absolute;
   right:0.1rem;
}




.role-btn {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.role-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}




.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.custom-dropdown {
    background: rgba(0, 0, 0, 0.8) !important; /* Black with 80% transparency */
    border: none;
}

.custom-dropdown .dropdown-item {
    color: white !important;
}

.custom-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.2); /* Light transparent hover effect */
}



.non-clickable {
    cursor: default;
    opacity: 0.7;
    pointer-events: none;
}




.logout-btn:hover {
    background-color: #025f29 !important; /* Darker green for hover */
    color: #fff !important; /* Ensure text remains visible */
}

/* Responsive Design */
@media (max-width: 568px) {
.section-header h2 {
    font-size: 1.8rem;
}

.accordion-button {
    font-size: 1rem;
}

.accordion-body {
    font-size: 1rem;
}

.accordion-item {
    margin-bottom: 10px;
}


#requests{
    position:relative;
    right:2.1rem;
    font-size: 0.9rem;
    
   
}

#maintextrequest{
    font-size: 0.9rem;
}

.section-content{
    padding:0.5rem;
}
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .image-section {
        margin-top: 20px;
        justify-content: center;
    }
}

/* For screens smaller than 568px */
@media (max-width: 568px) {
    .hero-section h1 {
        font-size: 1.8rem; /* Smaller font for smaller screens */
    }

    .hero-section p {
        font-size: 0.9rem; /* Smaller text */
    }

    .section-header h2 {
        font-size: 1.5rem; /* Adjust header size */
    }

    .section-content {
        font-size: 1rem; /* Adjust text size */
    }

    .image-section img {
        max-width: 100%; /* Ensure image fits the screen */
        height: auto;
    }

    .row {
        flex-direction: column; /* Stack content on smaller screens */
    }

    .col-md-8,
    .col-md-4 {
        max-width: 100%; /* Make columns take full width */
        width: 100%;
    }
    

}

@media (max-width: 468px) {
/*custumized css for responsive*/
.lead{
        font-size: 1rem;
    }


    #requests{
        position:relative;
        right:2.2rem;
        font-size: 0.9rem;
    }

    #maintextrequest{
        font-size: 0.9rem;
    }

    .section-content{
        padding:0.5rem;
    }


  


    #faq-section{
        font-size: 0.1rem;
        width:27rem;
    }

}

.dropdown-item.active {
    background-color: #4CAF50; /* Green background */
    color: white;
}




 /* Hero Section */
 .hero-section {
    text-align: center;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;

}

/* Text Sliding Animation */
 .hero-section p {
    opacity: 0; /* Initially hidden */
    transform: translateX(-100%); /* Start from the left off-screen */
    animation: slideInText 1.5s forwards;

    padding-bottom: 2rem;
}

/* Slide-in animation for text */
@keyframes slideInText {
    0% {
        transform: translateX(-100%); /* Start from the left */
        opacity: 0;
    }
    100% {
        transform: translateX(0); /* End at original position */
        opacity: 1;
    }
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.2rem;
    margin-top: 10px;
}


/* for Login */

.modal-content {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-weight: bold;
    color: black;
}

.modal-body {
    color: black;
}

.form-label {
    font-weight: bold;
}

.input-group-text {
    background-color: #f8f9fa;
    border-radius: 10px 0 0 10px;
}

.form-control {
    border-radius: 0 10px 10px 0;
    transition: border-color 0.3s ease-in-out;
}

/* Admin Mode Highlight */
.admin-mode .form-control {
    border-color: #dc3545 !important;
}

.admin-mode .modal-title {
    color: #dc3545;
}

/* Login Button Styling */
.btn-success {
    background-color: #4CAF50;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-success:hover {
    background-color: #3e8e41;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 255, 85, 0.3);
}

.btn-success:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* Admin Link Styling */
.admin-link {
    display: inline-block;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: color 0.3s ease-in-out, text-shadow 0.3s, box-shadow 0.3s, transform 0.2s;
}

.admin-link:hover {
    color: #00ff2a; /* Neon Green */
    text-shadow: 0 0 12px rgba(0, 255, 85, 0.8);
    box-shadow: 0 0 12px rgba(5, 124, 75, 0.5);
    transform: scale(1.05);
}

.admin-link:active {
    transform: scale(0.98);
}




/* For animation title */
h1 {
    font-size: 2rem; /* Adjusted size */
    color: white;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem; /* Smaller size for mobile */
    }
}

.typewrite > .wrap {
    border-right: 0.08em solid white;
}


.modal-backdrop {
    backdrop-filter: blur(8px); /* Blurs the background */
}

.blur-bg {
    filter: blur(5px);
}





.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
  }
  
  .sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; 
    animation: sk-chase-dot 2.0s infinite ease-in-out both; 
  }
  
  .sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #08f800da;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
  }
  
  .sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
  .sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }
  
  @keyframes sk-chase {
    100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot {
    80%, 100% { transform: rotate(360deg); } 
  }
  
  @keyframes sk-chase-dot-before {
    50% {
      transform: scale(0.4); 
    } 100%, 0% {
      transform: scale(1.0); 
    } 
  }

/* Blur background when loading modal is active */
.modal-backdrop.show {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay effect */
}

/* Make sure the loading animation is centered */
#loadingModal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Ensure text and animation are visible */
#loadingModal p {
    color: white;
    font-size: 18px;
    font-weight: bold;
}

/* Make the modal background transparent */
#loadingModal .modal-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
}



/* Visual feedback for logo */
#adminLogo {
    cursor: pointer;
    transition: transform 0.2s;
}

#adminLogo:hover {
    transform: scale(1.05);
}

/* Tooltip style */
#adminLogo[title] {
    position: relative;
}

#adminLogo[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}






/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

@media (max-width: 568px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }
}




