body{
    margin: 0;
    width: 100vw;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #212121;
    color: #ffffff;
}
header{
    background-color: #212121;
}
header nav{
    height: 150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
}
header nav img{
    width: 200px;
    height: 110px;
}
nav ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    
    
}
nav li a {
    color: #ffffff;
    font-size: 24px;
    padding: 16px 50px 16px 5px;
    text-decoration: none;
}
video{
    width: 100%; 
    height: 100vh; 
    object-fit: cover;
}

/* MAIN */

/* ABOUT */
.about{
    margin: auto;
    width: 60%;
    padding: 200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.bio{
    width: 50%;
    font-size: 24px;
}
.bio h1{
    color: #BE8661;
}
.profilePic img{
    width: 500px;
    height: 500px;
}


.textMartial{
    font:                           bolder 12vw 'Alfa Slab One';
    text-align:                     center;
    margin:                         0;
    background:                     url("/assets/MartialArts.jpg") center;
    background-size:                contain;
    margin:                         auto;
    width:                          75vw;
    background-clip:                text;
    -webkit-background-clip:        text;
    color:                          transparent;
}

.textOnline{
    
    font:                           bolder 12vw 'Alfa Slab One';
    text-align:                     center;
    margin:                         0;
    background:                     url("/assets/online.jpg") center;
    background-size:                contain;
    margin:                         auto;
    width:                          75vw;
    background-clip:                text;
    -webkit-background-clip:        text;
    color:                          transparent;
}

.program{
    padding-bottom: 100px;
    background-color: #212121;
    opacity: 1;
    background-image:  radial-gradient(#BE8661 1.6px, transparent 1.6px), radial-gradient(#BE8661 1.6px, #212121 1.6px);
    background-size: 64px 64px;
    background-position: 0 0,32px 32px;
}
.programTitle h1{
    padding: 50px;
    font-size: 48px;
}
.programCards{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px 20px; /* row-gap column gap */
    justify-content: space-evenly;
}
.card{
    position: relative;
    background-color: #FDFDFD;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 500px;
    height: 800px;
}
.card a{
    width: 100%;
}
.card img{
    width: 500px;
    height: 450px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.cardTxt h1{
    color: #BE8661;
    padding: 20px;
}
.cardTxt p{
    color: #BE8661;
    margin: 20px;
    font-size: 18px;
}
.card button{
    position: absolute;
    bottom: 0;
    
    
    margin: 20px;
    padding: 15px;
    background-color: #212121;
    color: #FDFDFD;
    font-size: 20px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    cursor:pointer;
    text-align: center;
}






/* CONTACT PAGE */

.contactForm{
    display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  min-height: calc(100vh - 200px); /* Adjust '200px' to match your header+footer height */
  padding: 40px 20px;
}




.contact-container {
  width: 100%;
  max-width: 800px;
}

/* The "Contact" header badge */
.header-badge {
  background-color: #BE8661; /* The brownish/tan color */
  color: white;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 12px;
  font-size: 24px;
  margin-bottom: 30px;
}

/* Grid layout for the inputs */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 20px;
  margin-bottom: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
}

.field-group label {
  color: white;
  margin-bottom: 8px;
  font-size: 16px;
}

/* Pill-shaped inputs */
input {
  background-color: white;
  border: none;
  height: 40px;
  border-radius: 20px; /* High radius for pill shape */
  padding: 0 20px;
  outline: none;
}

/* Textarea styling */
textarea {
  background-color: white;
  border: none;
  border-radius: 20px;
  padding: 20px;
  resize: none;
  outline: none;
}

.full-width {
  margin-top: 10px;
}

/* Button alignment and style */
.button-wrapper {
  display: flex;
  justify-content: flex-end; /* Aligns to the right */
  margin-top: 20px;
}

button {
  background-color: #BE8661;
  color: white;
  border: none;
  padding: 10px 45px;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.2s;
}

button:hover {
  opacity: 0.9;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}



/* FOOTER */

footer{
    border-top: 2px solid #BE8661;
    padding: 20px;
   
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
}
footer img{
    width: 200px;
    height: 110px;
}
.socials img{
    padding: 10px;
    width: 50px;
    height: 50px;
}



._dpd-widget_container ._dpd-widget_content {
    border-left: solid 0px !important;
    border-right: solid 0px !important;
    border-bottom: solid 0px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    border-radius: 20px !important;
    padding: 24px;
    margin: 0;
}

._dpd-widget_container {
    width: 100% !important;
    margin: 0 !important;
}
._dpd-widget_container ._dpd-widget_image {
    border-radius: 20px !important;
}
._dpd-widget_container ._dpd-widget_image img {
    object-fit: cover !important;
    /* height: 100% !important; */
    width: 100% !important;
    
}

div#dpd-widget-0._dpd-widget_container div._dpd-widget_price
 {
    color: #be8661 !important;
}
._dpd-widget_container ._dpd-widget_price {
    font-size: 32px !important;
    line-height: 32px !important;
}
._dpd-widget_container ._dpd-button_container {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 0.7px;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: left !important;
    margin-top: 5px;
    margin-bottom: 15px;
}











._dpd-widget_container, ._dpd-widget_container * {
    /* -webkit-box-sizing
Box Model addition in CSS3.
: content-box; */
    -moz-box-sizing: content-box;
    /* box-sizing: content-box; */
    /* line-height: normal; */
    /* width: 100%; */
    /* border-radius: 20px; */
}
._dpd-button_container, ._dpd-button_container *, ._dpd-widget_container, ._dpd-widget_container * {
    opacity: 1;
}

div#dpd-widget-0._dpd-widget_container div._dpd-widget_content, div#dpd-widget-0._dpd-widget_container div._dpd-widget_image, div#dpd-widget-0._dpd-widget_container div._dpd-widget_title_box

 {
    background-color: #ffffff;
    border-color: #c7c7c7;
}
._dpd-widget_container ._dpd-widget_content, ._dpd-widget_container ._dpd-widget_image, ._dpd-widget_container._dpd-widget_landscape ._dpd-widget_content, ._dpd-widget_container._dpd-widget_landscape ._dpd-widget_image, ._dpd-widget_container ._dpd-widget_price_input input, ._dpd-widget_container ._dpd-widget_price_input span, ._dpd-widget_container ._dpd-widget_title_box {
    border-color: #c7c7c7;
    max-width: 550px;
}
._dpd-widget_container ._dpd-widget_content, ._dpd-widget_container ._dpd-widget_price_input input, ._dpd-widget_container ._dpd-widget_price_input span {
    background: white;
}
._dpd-widget_container ._dpd-widget_content {
    border-left: solid 1px;
    border-right: solid 1px;
    border-bottom: solid 1px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    padding: 24px;
    margin: 0;
}/* Shorthand property for setting border width, style and color

Widely available across major browsers (Baseline since January 2018)
Learn more

Don't show */


._dpd-widget_container, ._dpd-widget_container * {
    /* -webkit-box-sizing: content-box; */
    -moz-box-sizing: content-box;
    /* box-sizing: content-box; */
    /* line-height: normal; */
    /* width: 100%; */
    /* border-radius: 20px; */
}
._dpd-button_container, ._dpd-button_container *, ._dpd-widget_container, ._dpd-widget_container *

 {
    opacity: 1;
}

._dpd-widget_container ._dpd-widget_title {
    display: inline-block;
    width: 60% !important;
    height: 100px;
    vertical-align
/* Affects the vertical positioning of the inline boxes generated by an inline-level element inside a line box.

Widely available across major browsers (Baseline since January 2018)
Learn more

Don't show */
: top;
    font-size: 32px !important;
    line-height: 32px !important;
    letter-spacing: 0.7px;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    text-align: left;
}














div {
    display: block;
    unicode-bidi: isolate;
}




/* --- FULL WIDTH MOBILE OVERRIDE --- */
@media screen and (max-width: 768px) {

    /* 1. RESET OVERFLOW & WIDTH */
    html, body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow-x: hidden !important; /* This is crucial to stop the side-wobble */
    }

    /* 2. HEADER & NAVIGATION */
    header nav {
        margin: 0 !important;
        width: 100% !important;
        height: auto !important;
        padding: 20px 0 !important;
        flex-direction: column !important;
    }

    nav ul {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    nav li a {
        padding: 12px 0 !important;
        font-size: 20px !important;
        display: block !important;
    }

    /* 3. ABOUT SECTION - BREAKING THE 60% WALL */
    .about {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 40px 15px !important; /* Replaces the 200px padding */
        flex-direction: column !important;
        display: flex !important;
        box-sizing: border-box !important;
    }

    .bio {
        width: 100% !important;
        font-size: 18px !important;
        text-align: center !important;
        padding: 0 !important;
    }

    .profilePic img {
        width: 100% !important; /* Image fills screen width */
        max-width: 350px !important; /* Prevents it from getting too huge on tablets */
        height: auto !important;
        margin: 0 auto 30px auto !important;
    }

    /* 4. THE BIG TEXT (Martial Arts/Performance) */
    /* Forcing these from 75vw to 100% */
    .textMartial, .textPerformance, .textOnline {
        width: 100% !important;
        font-size: 16vw !important; /* Dynamic size based on screen width */
        margin: 20px 0 !important;
        background-size: cover !important; /* Better image fill for mobile */
    }

    /* 5. PROGRAM CARDS */
    .programCards {
        padding: 10px !important;
        gap: 30px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 650px !important; /* Prevents overlap while stacking */
        margin: 0 0 20px 0 !important;
        border-radius: 10px !important;
    }

    .card img {
        width: 100% !important;
        height: 450px !important;
        border-radius: 10px !important;
    }

    /* 6. CONTACT FORM */
    .form-grid {
        grid-template-columns: 1fr !important; /* Stacks inputs vertically */
    }
    
    .contact-container {
        padding: 0 10px !important;
    }

    /* 7. FOOTER */
    footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;   /* Centers horizontally */
    justify-content: center !important;
    text-align: center !important;
    padding: 40px 20px !important;
    height: auto !important;
}

footer img {
    margin: 0 auto 20px auto !important; /* Centers the DKPT logo */
    display: block !important;
}

.socials {
    display: flex !important;
    justify-content: center !important; /* Centers the icons side-by-side */
    width: 100% !important;
    margin-top: 20px !important;
    padding: 0 !important;
}

.socials img {
    margin: 0 10px !important; /* Spacing between the icons */
}
}