/* General Styles */
/* #### Generated By: http://font.download #### */

@font-face {
    font-family: 'Trajan Pro Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Trajan Pro Regular'), url('TrajanPro-Regular.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Trajan Pro Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Trajan Pro Bold'), url('TrajanPro-Bold.woff') format('woff');
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TrajanPro', serif;
    color: #fdcc2a; /* Gold */
    background-color: #000; /* Black background */
    scroll-behavior: smooth;
}

h1, h3 {
    font-family: 'TrajanPro', serif;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fdcc2a; /* Gold */
}

#video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

#video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.5s ease;
}

#video-background.hide-video {
    display: none; /* Hide the video when the class is added */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #deb632; /* Gold */
    font-family: 'Cinzel', serif;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #deb632; /* Gold */
}

.cta-button {
    background-color: #deb632; /* Gold */
    color: black;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d4af37; /* Darker gold */
}

/* Services Section */
#services {
    padding: 4rem 2rem;
    background-color: #000; /* Black */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #f7d976; /* Gold */
    margin-bottom: 2rem;
}

.service-cards {
    display: flex;
    justify-content: space-around;
}

.card {
    background-color: #1a1a1a; /* Dark gray/black for contrast */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    color: #f7d976; /* Gold text */
}

.card:hover {
    transform: scale(1.05);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card p {
    color: #f7d976;
}

/* Booking Section */
#booking {
    padding: 4rem 2rem;
    background-color: #000; /* Black */
}

#booking-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#booking-form label {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #f7d976; /* Gold */
}

#booking-form input,
#booking-form select {
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #f7d976; /* Gold border */
    background-color: #1a1a1a; /* Dark background */
    color: #f7d976; /* Gold text */
    border-radius: 5px;
}

#booking-form button {
    align-self: center;
    background-color: #f7d976; /* Gold */
    color: black;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
}

#booking-form button:hover {
    background-color: #d4af37; /* Darker gold */
}

/* Contact Section */
#contact {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #000; /* Black */
    color: #f7d976; /* Gold */
}

#contact h2 {
    color: #f7d976; /* Gold */
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

#contact p {
    color: #f7d976; /* Gold */
}

.footer-color {
    color: white;
}

#video-background.fade-out {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.copyright {
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
}