/* 기본 초기화 및 폰트 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #333;
    line-height: 1.6;
}

/* 상단 헤더 및 우측 상단 메뉴 */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: 1000;
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2ecc71;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #2ecc71;
}

/* 메인 홈 (히어로 섹션) */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('image/수확.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 80px 20px 0 20px; /* 모바일 좌우 여백 확보 */
}

/* 박스가 화면 크기에 맞춰 유연하게 줄어들도록 감싸는 틀 */
.hero-container {
    width: 100%;
    max-width: 800px; 
    display: flex;
    justify-content: center;
}

.hero-content {
    background-color: transparent; /* 배경 박스 완전히 삭제 */
    padding: 50px 60px;
    width: 100%;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9); /* 글자 뒤 그림자 강화 */
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9); /* 글자 뒤 그림자 강화 */
}



.btn {
    display: inline-block;
    background-color: #2ecc71;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #27ae60;
}

/* 공통 섹션 레이아웃 */
.container {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.bg-light {
    background-color: #f9f9f9;
    max-width: 100%;
}

h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    color: #7f8c8d;
    margin-bottom: 50px;
}

/* 농장 소개 그리드 */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-item {
    background: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.about-item h3 {
    color: #2ecc71;
    margin-bottom: 15px;
}

/* 작업 모습 갤러리 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* 오시는 길 / 문의 */
.contact-info {
    background: #fff;
    display: inline-block;
    padding: 30px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* 푸터 */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}
