* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito", Arial, sans-serif;
    line-height: 1.6;
    background-color: black;
}

header.hero {
    color: #fff;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content {
    opacity: 0;
    transform: translateY(100px);
    animation: slideInFromBottom 0.5s ease-out forwards;
}

.video-container {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 0.7s ease-out 0.2s forwards;
}

.hero-content.animate {
    animation: slideInFromBottom 0.5s ease-out forwards;
}

.video-container.animate {
    animation: fadeIn 0.7s ease-out 0.2s forwards;
}


@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


header h1 {
    font-family: "Playfair Display", serif;
}

.line::before,
.line::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2.5px;
    background-color: #FFA343;
    border-radius: 5px;
    margin-bottom: 3.5px;
}

.line::before {
    margin-right: 10px;
}

.line::after {
    margin-left: 10px;
}

.video-container {
    position: relative;
    width: 90%;
    height: 450px;
    max-width: 800px;
    margin: 30px auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.gallery {
    padding: 2em;
}

.gallery-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1em;
    color: #f1f1f1;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.gallery-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 190px;
    overflow: hidden;
    border-radius: 8px;
    margin: 5px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-container a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.gallery-container a:hover img {
    filter: brightness(100%);
}

.gallery-container img {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.5s;
    filter: brightness(80%);
    object-fit: cover;
}

.gallery-container a {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-container a.animate {
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4em 2em 1em 2em;
    color: #fff;
    animation: slideInFromTop 1s ease-out forwards;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .logo img {
    max-width: 60px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1em;
}

.navbar .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
    color: #ffa500;
}

.navbar .nav-links li a::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: transparent;
    border-radius: 100px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.navbar .nav-links li a.active::after {
    background-color: #ffa500;
}

.navbar .nav-links li a:hover::after {
    width: 40px;
    height: 3px;
    background-color: #ffa500;
}

.social-media-buttons {
    position: fixed;
    bottom: 20vw;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideIn 1s ease-out forwards;
    z-index: 1000;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-media-buttons a:hover {
    background-color: #ffa500;
    transform: scale(1.1);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50vw);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 1em;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.footer-links {
    display: flex;
    gap: 1em;
    margin: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffa500;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #aaa;
}

.footer .logo img {
    margin-top: 10px;
    max-width: 60px;
}


.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ffa500;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #ff7f00;
    transform: scale(1.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
