:root {
    --gold: #c9a24d;
    --dark: #1c1c1c;
    --light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}




html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}



.btn {
    background: var(--gold);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
}

.section {
    padding: 80px 10%;
}

.section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--gold);
}

.light {
    background: var(--light);
}

.events {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.events span {
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 20px;
}

.capacity {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.capacity div {
    max-width: 300px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.center {
    text-align: center;
    max-width: 700px;
    margin: auto;
}



footer {
    padding-top: 40px;
    padding-bottom: 40px;
}

footer {
    background: white;
    color: #333;
    text-align: center;
    padding: 20px;
    border: none;
    box-shadow: none;
}


body {
    margin: 0;
    background: white;
}




.reservation-form {
    max-width: 600px;
    margin: auto;
    display: grid;
    gap: 15px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.reservation-form textarea {
    min-height: 120px;
    resize: vertical;
}

.reservation-form button {
    border: none;
    cursor: pointer;
}

footer {
    padding-top: 40px;
    padding-bottom: 40px;
}

.spacer {
    height: 80px;
    background: white;
}


header,
.hero,
body,
html {
    width: 100%;
    margin: 0;
    padding: 0;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}


html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
}
* {
    box-sizing: border-box;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
        url("images/tuff.jpeg") center / cover no-repeat;
    z-index: 1;
}

.hero .logo {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 120px;
    height: auto;
    z-index: 3;
}

.hero-content {
    max-width: 800px;
    margin: auto;
}
 .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.video-grid video {
    width: 100%;
    border-radius: 12px;
}

.hero-content p {
    margin-bottom: 40px;
    font-size: 1.3rem;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section > * {
    max-width: 900px;
    width: 100%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
