/* 
   竹垣ローズガーデン - Custom Styles 
   Design: Japanese Modern, Elegant, Natural
*/

:root {
    --color-sumi: #2c2c2c;
    --color-shinryoku: #1a4423;
    --color-take: #8f9e8b;
    --color-genari: #fdfaf1; /* Slightly off-white */
    --color-rose: #8b0000;
    --color-rose-light: #fbecec;
    --max-width: 1100px;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
    color: var(--color-sumi);
    line-height: 1.8;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--color-take);
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link img {
    height: 50px;
}

.brand-name {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

/* Nav */
.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a:hover {
    color: var(--color-take);
}

.btn-contact-header {
    background: var(--color-shinryoku);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-contact-header:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--color-sumi);
    margin: 6px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    height: 80vh;
    background: var(--color-genari);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('../images/hero-rose-garden.png') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
}

.hero p {
    font-size: 1.2rem;
}

/* Cards & Components */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-img {
    height: 360px;
    background: #eee;
    overflow: hidden;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-shinryoku);
}

/* Tables */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.price-table th, .price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.price-table th {
    background: #f9f9f9;
    width: 40%;
}

/* Footer */
footer {
    background: #f4f4f4;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 160px;
    margin-bottom: 10px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

/* Form */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.required::after {
    content: ' *';
    color: var(--color-rose);
}

.btn-submit {
    background: var(--color-shinryoku);
    color: #fff;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--color-sumi);
}

/* Responsive */
@media (max-width: 768px) {
    header { height: auto; padding: 15px 0; }
    .menu-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        border-top: 1px solid #eee;
    }
    .nav-menu.active { display: block; }
    .nav-menu ul { flex-direction: column; gap: 15px; }
    .btn-contact-header { display: none; }
    
    .hero h2 { font-size: 1.8rem; }
}
