/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5; /* 배경색 */
    color: #333;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2ecc71; /* Lime 색 계열 */
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #f39c12; /* 오렌지 색 하이라이트 */
}

.profile {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Main Content */
.content {
    margin-top: 50px;
}

/* Food Section */
.food-section {
    margin-bottom: 50px;
}

/* Header */
h1, h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Video Section */
.video-container {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.video {
    width: 48%;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Image Section */
.image-container {
    text-align: center;
    margin-bottom: 40px;
}

.food-image {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
}

/* Navigation Buttons */
.buttons {
    display: flex;
    gap: 20px;
}

.buttons .btn {
    padding: 10px 20px;
    background-color: #e67e22; /* Orange 색 */
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    width: 150px;
    transition: background-color 0.3s;
}

.buttons .btn:hover {
    background-color: #f39c12; /* 오렌지 색 하이라이트 */
}
