/* --- 왜 오셨어요? --- */

/* --- Global Styles & Body --- */
@import url('https://cdn.jsdelivr.net/gh/fonts-archive/AppleSDGothicNeo/AppleSDGothicNeo.css');
body {
    margin: 0;
    font-family: "Apple SD Gothic Neo";
    background-color: #E3E3E3;
    color: #333;
}

#container {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
}

button:hover {
  filter: brightness(0.9);
}
button:active {
  transform: scale(0.9);
}

/* --- Header & Navigation --- */
header {
    background: linear-gradient(to bottom, #8a8a8a, #575757);
    border-bottom: 1px solid #444;
    min-height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    padding: 5px 0;
}

.apple-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.apple-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0 20px;
    height: 36px;
    line-height: 36px;
    display: block;
    text-shadow: 0 1px 1px #000;
}

.apple-nav ul li a:hover {
    background: linear-gradient(to bottom, #5d5d5d, #3a3a3a);
}

.apple-nav ul li a.active {
    background: linear-gradient(to bottom, #444, #222);
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f7f7f7, #d5d5d5);
    border-bottom: 1px solid #bbb;
}

h1 {
    font-size: 44px;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.subtitle {
    font-size: 24px;
    color: #555;
    margin-top: 5px;
}

/* --- Call to Action (CTA) Button --- */
.cta-button {
    display: inline-block;
    padding: 10px 25px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background: linear-gradient(to bottom, #69acff, #0060de);
    border: 1px solid #005add;
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    text-shadow: 0 -1px 1px #004ab3;
}

.cta-button:hover {
    background: linear-gradient(to bottom, #82baff, #1a70e8);
}

/* --- Features Section --- */
.features {
    padding: 40px 20px;
    text-align: center;
    background-color: #fff;
}

h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.feature-item {
    width: 30%;
    min-width: 200px;
    margin-bottom: 20px;
}

.feature-item img {
    height: 48px;
}

.feature-item h3 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* --- Footer --- */
footer {
    text-align: center;
    font-size: 11px;
    color: #666;
    padding: 20px;
    border-top: 1px solid #ddd;
}

footer a {
    color: #08c;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* --- Sub-page Styles --- */
.sub-page, .policy-page {
    padding: 20px;
}

.content-block {
    text-align: center;
    padding: 20px 10%;
}
.content-block h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}
.content-block p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.policy-page {
    padding: 30px 5%;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}
.policy-page h2 {
    font-size: 28px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
.policy-page h3 {
    font-size: 18px;
    color: #000;
    margin-top: 30px;
    margin-bottom: 10px;
}
.policy-page p {
    margin-bottom: 15px;
}

/* --- 반응형 --- */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .apple-nav ul li a {
        padding: 0 10px; 
        font-size: 12px;
    }
}

.apple-nav ul li a img.nav-icon {
    height: 20px; 
    vertical-align: middle;
}

/* --- Shop --- */
.shop-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    padding: 20px;
}

.product-card {
    width: 45%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-card img {
    max-width: 60%;
    height: auto;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.product-card .price {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.cta-button.small {
    padding: 6px 18px;
    font-size: 14px;
    border-radius: 14px;
}
/* --- 그래 나 바이브코딩한다 됐냐 --- */