html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;        
  box-sizing: border-box;
  font-family: sans-serif, system-ui, 'Open Sans', 'Helvetica Neue';
  background: white;   
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* Mobile first */
body {
    width: 100%;
  max-width: 430px;    
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 네비게이션 바 Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* logo css */
/* Style the navigation menu */
.topnav {
  overflow: hidden;
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

#myLinks a{
    font-size: 20px;
}
.icon {
  display: flex;
  align-items: center; /* 세로 가운데 정렬 */
  height:100%;
}
.nav-icon{
    margin-top : 5px;
    margin-right: 10px;
}
/* Style navigation menu links */
.logo-img{
    display: block;
  margin: 0 auto; 
    width:137px;
    height:56px;
}
.topnav a {
  color: #0C98FE;
  font-weight: 600;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  text-align: center;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
/* ------- hamburger menu ends ---------- */

.hero {
    position: relative;
}
.hero-video {
    width: 430px;
    height: 100%;
    display: block;
   

}
.hero-text {
    position: absolute;
    top: 19%; 
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 80%;
}
.main-btn {
    color: #293329;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #293329;
    border-radius: 24px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.main-btn:hover{
    background: #293329;
    color: white;
    border: 2px solid #293329;
    transition: background-color 0.3s, color 0.3s;
}
.drinks {
    padding: 24px 16px;
}
.drinks h2 {
    font-size: 32px;
    font-weight: 700;
    color: #293329;
    margin: 0 0 16px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: left;
    padding: 0 0 0 16px;
    display: block;
    white-space: pre-line;
}
.drink-card {
    padding: 16px;
    margin-bottom: 16px;
    text-align: center;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.drink-card img {
    width: 80%;
    border-radius: 16px;
    margin-bottom: 8px;
}
.drink-card h3 {
    font-size: 18px;
    margin: 8px 0;
}
.drink-card ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #555;
}
.secondary-btn {
    display: block;
    margin: 24px auto;
    padding: 10px 24px;
    background: #eaeaea;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none !important;
}

.secondary-btn:hover {
    background: #0C98FE;
    color: white;
    transition: background-color 0.3s, color 0.3s;
}
.events {
    padding: 24px 16px;
}
.events h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2D3A32;
    margin: 0 0 16px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: left;
    padding: 0 0 0 16px;
    display: block;
    white-space: pre-line;
}
.event-img {
    width: 100%;
    border-radius: 16px;
     transition: filter 0.3s ease;
}

.event-img:hover {
    filter: brightness(0.9);
    cursor: pointer;
}

footer {
    background: #E8F5FF; 
    color: #214255;
    padding: 24px 16px;
    text-align: left;
    margin-top: 24px;
}

.footer-img{
    width:165px;
    height:72px;
}
.contact-title{
    font-size: 30px;
    padding-bottom: -15px;
    margin-top: -5px;
    margin-bottom: -10px;
}

.contact-text{
    font-size: 18px;
}

.contact-text a {
  color: inherit;
  text-decoration: none;
}

.contact-text a:hover,
.contact-text a:active,
.contact-text a:focus {
  color: inherit;
  text-decoration: none;
}

.social-icons{
    margin-top: 15px;
    display: flex;
    gap: 15px;
}