
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    background-color: rgb(58, 55, 55);
    color: antiquewhite;
    font-family: poppins, sans-serif;
    line-height: 1.6;
}


.header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(40, 40, 40, 0.8); 
    backdrop-filter: blur(3px); 
}

.header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.header .navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header .navbar a {
    text-decoration: none;
    font-size: 1rem;
    color: antiquewhite;
    transition: color 0.3s ease;
}

.header .navbar a:hover {
    color: brown;
}

.header .navbar i {
    display: none;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .header .navbar ul {
        gap: 10px;
    }
    
    .header .navbar i {
        display: inline-block;
    }
    
    .header .navbar span {
        display: none;
    }
    
    .header .navbar a {
        padding: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .header {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .header .navbar ul {
        gap: 5px;
    }
    
    .header .navbar a {
        padding: 5px;
    }
}


.hero {
    display: flex;
    background: url(edwin-andrade-6liebVeAfrY-unsplash.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    text-align: center; 
    font-family: Georgia, 'Times New Roman', Times, serif;
    gap: -55px; 
}

.hero h2 {
    font-family: Tagesschrift, sans-serif;
    font-size: 2.65rem;
    color: antiquewhite;
}

.hero em {
    font-size: 1.32rem;
    color: lightgray;
}

.hero h3 {
    font-size: 2.1rem;
    margin-bottom: 0;
    color: antiquewhite;
}

.hero p {
    font-size: 1.1rem;
    color: lightgray;
    margin-bottom: 1em;
}

.hero h1 {
    font-size: 3.65em;
    margin-bottom: 0.5em; 
}


.about {
    font-family: poppins, sans-serif;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-top: 2em;
}

.about h2 {
  color: #cabdbd;
  margin-bottom: 0.75em;
  text-align: center;
}

.about p {
  line-height: 1.6;
  margin-bottom: 1em;
  color: #c9b8b8;
}

.about .events {
  margin-top: 1.5em;
  padding: 1em;

  border-radius: 6px;
}

.about .events h3 {
  color: #cabfbf;
  margin-bottom: 0.75em;
}

.about .events ul {
  list-style: none;
  padding: 0;
}

.about .events li {
  padding: 0.5em 0;
  border-bottom: 1px solid #eee;
}

.sions{
    display: flex;
    gap: 20px;
}

.sions a{
    text-decoration: none;
    color: antiquewhite;
    border: 1px solid antiquewhite;
    padding: 8px 10px;
    border-radius: 7px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.sions a:hover{
    background-color: brown;
    color: black;
}

.about .events li:last-child {
  border-bottom: none;
}

#specials {
    text-align: center;
    padding: 2em 0;
    min-height: auto; 
    background-color: rgb(40, 40, 40);
    color: antiquewhite;
    font-family: agbalumo, sans-serif;
    font-size: 1.2rem;
    margin: 2em 0;
}

footer {
    text-align: center;
    padding: 1em 0;
    background-color: rgb(40, 40, 40);
    color: antiquewhite;
    font-family: agbalumo, sans-serif;
    font-size: 0.9rem;
    margin-top: 2em;
}

.contact {
    padding: 4em 2em;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    text-align: center;
    color: #c4b6b6;
    margin-bottom: 1.5em;
}

.contact-info {
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2em;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    padding: 0.8em 0;
    border-bottom: 1px solid #eee;
    color: #c4baba;
}

contact-info li:last-child {
    border-bottom: none;
}

.contact-form {
    padding: 2em;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5em;
}

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    color: #468374;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 1em;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #449d44;
}

.footer-text {
    text-align: center;
    margin-top: 2em;
    color: #666;
}
.footer-text {  
    text-align: center;
    margin-top: 2em;
    color: #eee5e5;
}


.gallery {
    padding: 4em 2em;
    background-color: rgb(45, 43, 43);
}

.gallery h2 {
    text-align: center;
    color: antiquewhite;
    margin-bottom: 2em;
    font-size: 2rem;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5em;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.video {
    grid-column: span 2;
}


@media (max-width: 768px) {
    .gallery-item.video {
        grid-column: auto;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section {
    min-height: 100vh;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1.5em;
    padding-top: 1em;
    border-top: 1px solid rgba(238, 238, 238, 0.1);
}

.social-links a {
    color: #c4baba;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links .fa-facebook:hover {
    color: #4267B2;
    text-shadow: 1px 1px 2px #ffffff
}

.social-links .fa-youtube:hover {
    color: #FF0000;
    text-shadow: 1px 1px 2px #ffffff;
}

.social-links .fa-twitter:hover {
    color: #000000;
    text-shadow: 1px 1px 3px #ffffff;
}