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

body{
    background:#E9E2CF;
    line-height:1.6;
}

/* LETTERTYPE*/
@font-face {
  font-family: Bigbesty;
  src: url(font/bigbesty/Bigbesty.otf);
}

@font-face {
  font-family: merriweather;
  src: url(font/Merriweather/Merriweather-VariableFont_opsz\,wdth\,wght.ttf);
}

/* HEADER */
.header{
    height:100vh;
    background:url("images/zakmes2.jpg") center/cover no-repeat;
}

.logo img{
    width: 30%;
}

.overlay{
    background:rgba(0, 0, 0, 0.2);
    height:100%;
}

/* Golf onder header */

/* NAV */
.navbar{
    display:flex;
    justify-content:space-between;
    padding-left:30px;
    padding-right: 30px;
    padding-bottom: 0px;
    color: #E9E2CF;
    font-family: Bigbesty;
    font-weight: lighter;
    background-color: #AA1F24;
    align-items: center;
    height: 15%;
}

.nav-menu{
    display:flex;
    gap:25px;
    list-style:none;
    font-size: large;
}

.nav-menu a{
  position: relative;
  text-decoration: none;
  color: #E9E2CF;
  font-size: 18px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* afstand onder tekst */
  width: 0;
  height: 2px;
  background-color: #E9E2CF;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after{
    width: 100%;
}

.nav-menu a{
    color:#E9E2CF;
    text-decoration:none;
}

.hamburger{
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(233,226,207,0.15);
}

.hamburger span{
    width: 26px;
    height: 2px;
    background: #E9E2CF;
    border-radius: 2px;
    display: block;
    transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.2s ease, width 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2){
    opacity: 0;
    width: 0;
}
.hamburger.open span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE OVERLAY NAV */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #AA1F24;
    z-index: 9998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    display: flex;
    opacity: 1;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #E9E2CF;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.mobile-nav-close:hover { opacity: 1; }

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.mobile-nav-links li {
    overflow: hidden;
}

.mobile-nav-links a {
    font-family: Bigbesty;
    font-size: 2.4rem;
    color: #E9E2CF;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.2s, letter-spacing 0.25s;
    display: inline-block;
}

.mobile-nav-links a:hover {
    color: #CE6E86;
    letter-spacing: 5px;
}

/* HERO */
.hero{
    text-align:center;
    margin-top:10vh;
    color:white;
    display: flex;
    flex-direction: column;
}

.hero img{
    width: 30%;
    float: left;
    margin-left: 90px;
}

.btn{
    position: relative;
    overflow: hidden;
    background: #AA1F24;
    color: #E9E2CF;
    font-family: 'Merriweather', merriweather, serif;
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: none;
    padding: 14px 36px;
    margin-left: 90px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border-radius: 50px;
    width: auto;
    align-self: flex-start;
    box-shadow: 0 4px 20px rgba(170,31,36,0.45);
    animation: pulse-btn 3s ease-in-out infinite;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(233,226,207,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.btn:hover::before {
    left: 140%;
}

.btn:hover{
    background: #CE6E86;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(206,110,134,0.5);
}

.btn:active {
    transform: translateY(0px);
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 4px 20px rgba(170,31,36,0.45); }
    50%       { box-shadow: 0 4px 28px rgba(170,31,36,0.75); }
}

/* SECTIONS */

.info{
    padding:80px 20px;
    text-align:center;
}

.section{
    padding-top: 40px;
    text-align:center;
    margin-bottom: 100px;
}

.info h1{
    font-size: xx-large;
    font-family: Bigbesty;
    font-weight: lighter;
    color:#CE6E86;
}

.info p{
    font-size: x-large;
    font-family: merriweather;
    color:#AA1F24;
}

.dark{
    background:#111;
    color:#fff;
}

/* GRID */
.grid{
    display: grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
    margin: 40px;
}

.grid h2{
    font-family: Bigbesty;
    font-weight: lighter;
    color: #CE6E86;
}

.grid p{
    font-family: merriweather;
    color: #AA1F24;
}

.card{
    transition:.4s;
    background-color: white;
    border-radius: 30px;
    padding: 20px;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:45%;
    height:220px;
    object-fit:cover;
}



/* ── VIDEO SECTIE ── */
.video-section {
  position: relative;
  background: #AA1F24;
  padding: 0;
  z-index: 1;
}

.wave-top svg,
.wave-bottom-red svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-top,
.wave-bottom-red {
  overflow: hidden;
  line-height: 0;
}

.video-inner {
  padding: 60px 60px;
  text-align: center;
}

.video_title {
  font-family: Bigbesty;
  font-size: xxx-large;
  color: #E9E2CF;
  margin-bottom: 5px;
}

.video_sub1{
    font-family: merriweather;
    color: #E9E2CF;
    opacity: 0.8;
    font-size: medium;
    margin-bottom: 12px;
}

.video_sub {
  font-family: merriweather;
  color: #E9E2CF;
  opacity: 0.8;
  font-size: medium;
  margin-bottom: 40px;
}

.video-wrapper {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.video-placeholder {
  border: 2px dashed rgba(233,226,207,0.3);
  border-radius: 24px;
  padding: 40px 40px;
}

/* CTA */
.cta{
    padding:80px;
    text-align:center;
    margin: 100px;
}

.cta h1{
    font-family: Bigbesty;
    font-weight: lighter;
    color: #CE6E86;
    font-size: xx-large;
}

.cta p{
    font-family: merriweather;
    color: #CE6E86;
    font-size: x-large;
}

/* FOOTER */

.footer{
    justify-content:space-around;
    background: #AA1F24;
    color: #E9E2CF;
    padding:40px;
    width: 100%;
    display: flex;
}

.footer h3{
    font-family: Bigbesty;
    font-weight: lighter;
}

.footer p{
    font-family: merriweather;
}

.footer a{
    color: #E9E2CF;
    text-decoration:none;
    display:block;
    margin-top:5px;
    font-family: merriweather;
}


/* MOBILE */
@media(max-width:768px){
.nav-menu{
    display:none;
}

.navbar{
    height: 20%;
}

.hamburger{
    display: flex;
}

.header{
    height:45vh;
    background:url("images/zakmes2.jpg") center/cover no-repeat;
}

.hero_content{
    width: 80%;
}

.hero{
    margin-top: 0vh;
}

.hero img{
    float: left;
    margin-left: 10px;
    width: 50%;
}

.btn{
    padding:10px 28px;
    margin-left: 30px;
    width: auto;
    animation: none;
}

.grid{
    grid-template-columns:1fr;
}

.cta h1{
    font-size: x-large;
}

.info p{
    font-size: medium;
}

.footer{
    flex-direction:column;
    text-align:center;
    gap:20px;
}
}
