:root {
    --heading-font: 'Roboto';
    --body-font: 'Roboto';
 --spacing-sm: 8px;
    --spacing: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 46px;
    --spacing-2xl: 64px;
}

/* General */


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-weight: 400;
    background-color: var(--dark-gray);
    color: white;
    line-height: 1.25;
}

img {
    max-width: 100%;
}

button {
    background-color: black;
    color: white;
    
    font-size: 24px;
    padding: 8px 16px;
    border-radius: 22px;
   
}

.grid-menu {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.flex {
    display: flex;
}

.container {
    max-width: 1280px;
    
    margin: 0 auto;
    padding: 0 16px;
}
.container1{
    max-width: 800px;
    height: 3000px;

}
.p-menu{
    margin-bottom: 15px;

}

/* Type */
/* h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 400;
} */ 

h1 { font-size: 60px; }
h2 { font-size: 48px; }
h3 { font-size: 36px; }
h4 { font-size: 30px; }

p { font-size: 18px; }

/* Header */
header {
    padding: var(--spacing) 0;
}

header .flex {
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    display:flex;
    gap: 32px;
}

header nav a {
    text-decoration: none;
    color: white;
    font-family: var(--heading-font);
    font-size: 18px;
}

/* Footer */

footer {
    padding: var(--spacing-xl) 0;
}

footer .flex {
    justify-content: space-between;
    align-items: center;
}

footer nav a {
    color: white;
    text-decoration: none;
}

/* Banner */

.banner {
    position: relative;
}
.banner-video{
    position: relative;
}
.jquery-background-video-wrapper {
    aspect-ratio: 16 / 6;
}

.banner-video__content {
    position: absolute;
    z-index: 2;
    bottom: var(--spacing-lg);
    width: 100%;
}

.banner-video__content p {
    margin-top: var(--spacing-sm)
}

.banner-video__content-box {
    position: absolute;
    bottom: 0;          /* Align to the bottom */
  right: 0;           /* Align to the right */
 margin-bottom: 20px;
 margin-right:40px ;
  padding: 10px;
    width: 40rem;
    
    background-color:rgb(255, 255, 255); 
    border-radius: 10px;
    color: #333131;
    grid-column: span 5;
    padding: var(--spacing-lg) var(--spacing-xl); */
}
/* Tablet styles */
@media (max-width: 768px) {
    .banner-video__content-box {
        width: 30rem;   /* Reduce width for tablets */
        margin-right: 20px; /* Adjust margins for better fit */
        padding: var(--spacing-md) var(--spacing-lg); /* Adjust padding for smaller screens */
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .banner-video__content-box {
        width: 90%;     /* Use percentage for better flexibility */
        margin-right: 10px; /* Minimize margins on mobile */
        margin-bottom: 10px;
        padding: var(--spacing-sm) var(--spacing-md); /* Further reduce padding */
    }
}
.card-menu-top {
    font-size: 1.5rem;
    color: black;
}

/* Tablet styles */
@media (max-width: 768px) {
    .card-menu-top {
        font-size: 1.2rem; /* Slightly smaller for tablets */
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    .card-menu-top {
        font-size: 1rem; /* Smaller font size for mobile */
    }
}














/* Parallax */
.container{
    margin-bottom: 20%;
}

.statement {
    padding: var(--spacing-2xl) 0;
    


}

.menu {
    grid-column: 7 / span 8;
    text-align: center;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: var(--spacing-2xl);
    color: rgb(46, 45, 45);
}

.sc_left {
    grid-column: auto / span 6;

}

.statement__content h2 { 
    margin-bottom: var(--spacing)
}
.statement__content p {
    font-size: 20px;
    line-height: 1.5;
}

.statement__content button {
    margin-top: var(--spacing-xl);
}
.menu-menu {
    font-size: 2.5rem; /* Default size for large screens */
    line-height: 1.4;  /* Ensure good readability */
    margin: 1rem 0;
}

/* Tablet styles */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem; /* Slightly smaller font for tablets */
        margin: 0.8rem 0;
    }
}

/* Mobile styles */
@media (max-width: 480px) {
    h2 {
        font-size: 1.5rem; /* Smaller font for mobile */
        margin: 0.6rem 0;
    }
}
