*{
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

:root{
    --bg-color: #121212;
    --text-color: #ffffff;
    --main-color: #b68362;
    --other-color: #8b8a91;
    --alt-color: #4b4b51;
    --ann-color: #c7c6d3;
}


body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    color: #333;
    background: #222; 
}



.logo img{
    max-width: 80px;
    width: 100%;
    height: 100%;
    object-fit: contain;

}


.hero {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    position: relative;
    background: url('images/UOED2.jpeg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

 .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 10px; 
  padding: 10px;
  scroll-snap-type: x mandatory; 
}

.scroll-container img {
  flex: 0 0 auto;
  height: 300px; 
  border-radius: 6px;
  object-fit: cover;
  scroll-snap-align: start;
}


.overlay {
    background: #f5f5f5;
    color: #333;
    padding: 40px 20px;
}

section {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
}
section h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
section p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    margin: 10px 0;
}

.card-img-top {
  height: 300px;       
  object-fit: cover;    
}

.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.items .item {
    background: #333;
    border-radius: 8px;
    padding: 20px;
    width: 180px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #f5f5f5;
}
.items .item img {
    width: 100%;
    height: auto;
}
.items .item p {
    font-family: "Montserrat", sans-serif;
    margin-top: 10px;
    font-weight: 500;
}

.contact-link {
  color: #28a745; 
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-link:hover {
  text-decoration: underline;
  color: #218838;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}



footer {
    font-family: "Montserrat", sans-serif;
    text-align: center;
    padding: 20px;
    background: #171717;
    color: #ccc;
}
