/* 기본 설정 */
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* 기존 배경색을 지우고 주석처리 */
}


header {
    position: relative;
    /* height: 850px; */ /*배경이미지 고정 높이 설정*/
    min-height: 100vh; /* 배경이미지 화면 높이만큼 자동설정, 100vh-->100% viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1; /* 배경 색상 (임의로 설정) */
}

.home-container .background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/static/images/home_background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/static/images/home_background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px); /* 배경 흐림 효과 */
}

.content {
    position: relative; /* 텍스트와 버튼이 흐림 효과에 영향을 받지 않도록 설정 */
    color: #333; /* 텍스트 색상 */
    padding: 20px;
}


header h1 {
    font-size: 3rem;
    margin-bottom: 20px; /* 제목 아래 간격 추가 */
    color: white; /* 글씨 색상을 흰색으로 변경 */
    font-weight: bold; /* 글씨를 볼드체로 변경 */
    margin-bottom: 20px; /* 제목 아래 간격 추가 */
}

header p {
    font-size: 1.5rem;
    margin-bottom: 20px; /* 텍스트 아래 간격 추가 */
    color: white; /* 글씨 색상을 흰색으로 변경 */
    font-weight: bold; /* 글씨를 볼드체로 변경 */
}

header .button-group {
    display: flex;
    gap: 10px; /* 버튼 사이 간격 추가 */
}

header .btn {
    padding: 10px 20px; /* 버튼 패딩 */
    font-size: 1rem; /* 버튼 글씨 크기 */
}

.home-container {
    width: 90%;
    max-width: 1200px;
    margin: 0px auto;
    padding: 0px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* 테이블 스타일 */
table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ddd;
}

table th {
    background-color: #f4f4f4;
    color: #333;
}

table td a {
    color: #007BFF;
    text-decoration: none;
}

table td a:hover {
    text-decoration: underline;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.btn:hover {
    background-color: #0056b3;
}

/* 파일올리기, 주문확인 버튼 스타일 수정*/
.btn-primary {
    background-color: #b39ddb !important;  /* 주황색 */
    border: none;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 10px;                  /* 둥글게 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* 그림자 */
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #cc5200 !important; /* 호버 시 더 진한 주황 */
}



/* 반응형 디자인 */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    h1 {
        font-size: 20px;
    }

    table th, table td {
        padding: 8px;
    }

    .btn {
        padding: 8px 16px;
    }
}



