/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-svg-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 74, 107, 0.8) 0%, rgba(45, 74, 107, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-button {
    background: linear-gradient(135deg, #C9A876 0%, #B8956A 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-button:hover {
    background: linear-gradient(135deg, #E8D4A0 0%, #C9A876 100%);
    color: #2D4A6B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 118, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 20px;
    text-align: center;
}

.about p {
    font-size: 18px;
    color: #5A6B7D;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D4A6B;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 16px;
    color: #5A6B7D;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #F5F3F0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 20px;
    text-align: center;
}

.services p {
    font-size: 18px;
    color: #5A6B7D;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(201, 168, 118, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 74, 107, 0.1);
    border-color: #C9A876;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2D4A6B;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #5A6B7D;
    line-height: 1.6;
    margin: 0;
}

/* Accommodation Section */
.accommodation {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.accommodation h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 20px;
    text-align: center;
}

.accommodation p {
    font-size: 18px;
    color: #5A6B7D;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.accommodation-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.accommodation-image {
    flex: 1;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(45, 74, 107, 0.15);
}

.accommodation-text {
    flex: 1;
    text-align: left;
}

.accommodation-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2D4A6B;
    margin-bottom: 20px;
}

.accommodation-text p {
    font-size: 16px;
    color: #5A6B7D;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.accommodation-features {
    list-style: none;
    padding: 0;
}

.accommodation-features li {
    font-size: 16px;
    color: #5A6B7D;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.accommodation-features li:before {
    content: "✓";
    color: #C9A876;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #F5F3F0;
    text-align: center;
}

.products h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 20px;
    text-align: center;
}

.products p {
    font-size: 18px;
    color: #5A6B7D;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(201, 168, 118, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 74, 107, 0.1);
    border-color: #C9A876;
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(45, 74, 107, 0.1);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D4A6B;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 14px;
    color: #5A6B7D;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #C9A876;
    margin-bottom: 20px;
}

.product-button {
    background: linear-gradient(135deg, #C9A876 0%, #E8D4A0 100%);
    color: #2D4A6B;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}

.product-button:hover {
    background: linear-gradient(135deg, #E8D4A0 0%, #C9A876 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
}

.product-button.premium {
    background: linear-gradient(135deg, #2D4A6B 0%, #3A5A7A 100%);
    color: white;
}

.product-button.premium:hover {
    background: linear-gradient(135deg, #3A5A7A 0%, #2D4A6B 100%);
}

.product-button.corporate {
    background: linear-gradient(135deg, #5A6B7D 0%, #6B7C8F 100%);
    color: white;
}

.product-button.corporate:hover {
    background: linear-gradient(135deg, #6B7C8F 0%, #5A6B7D 100%);
}

.product-button.detox {
    background: linear-gradient(135deg, #8B7355 0%, #A08568 100%);
    color: white;
}

.product-button.detox:hover {
    background: linear-gradient(135deg, #A08568 0%, #8B7355 100%);
}

/* Wellness Programs Section */
.wellness-programs {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.wellness-programs h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 20px;
    text-align: center;
}

.wellness-programs p {
    font-size: 18px;
    color: #5A6B7D;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.programs-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.program-text {
    flex: 1;
}

.program-image {
    flex: 1;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(45, 74, 107, 0.15);
}

.program-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2D4A6B;
    margin-bottom: 20px;
    text-align: left;
}

.program-text p {
    font-size: 16px;
    color: #5A6B7D;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.program-features {
    list-style: none;
    padding: 0;
}

.program-features li {
    font-size: 16px;
    color: #5A6B7D;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.program-features li:before {
    content: "•";
    color: #C9A876;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Dining Section */
.dining {
    padding: 80px 0;
    background-color: #F5F3F0;
    text-align: center;
}

.dining h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 20px;
    text-align: center;
}

.dining p {
    font-size: 18px;
    color: #5A6B7D;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.dining-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.dining-image {
    flex: 1;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(45, 74, 107, 0.15);
}

.dining-text {
    flex: 1;
    text-align: left;
}

.dining-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2D4A6B;
    margin-bottom: 20px;
}

.dining-text p {
    font-size: 16px;
    color: #5A6B7D;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.dining-highlights {
    list-style: none;
    padding: 0;
}

.dining-highlights li {
    font-size: 16px;
    color: #5A6B7D;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.dining-highlights li:before {
    content: "★";
    color: #C9A876;
    position: absolute;
    left: 0;
}

/* Seasonal Experiences Section */
.seasonal-experiences {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.seasonal-experiences h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 20px;
    text-align: center;
}

.seasonal-experiences p {
    font-size: 18px;
    color: #5A6B7D;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.experience-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(201, 168, 118, 0.2);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 74, 107, 0.1);
    border-color: #C9A876;
}

.experience-image,
.service-image svg,
.experience-image svg {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(45, 74, 107, 0.1);
}

.service-image svg,
.experience-image svg {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(45, 74, 107, 0.1);
}

.experience-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2D4A6B;
    margin-bottom: 10px;
}

.experience-card p {
    font-size: 14px;
    color: #5A6B7D;
    line-height: 1.5;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2D4A6B;
    color: white;
    padding: 60px 0 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.footer-brand .logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-brand-subtitle {
    font-size: 14px;
    color: #C9A876;
    font-weight: 300;
}

.footer-nav {
    display: flex;
    gap: 50px;
    flex: 2;
}

.footer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #C9A876;
    margin-bottom: 8px;
}

.footer-nav-section a,
.footer-contact {
    color: white;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-nav-section a:hover {
    color: #C9A876;
}

.footer-contact {
    color: #B8C5D1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #B8C5D1;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: #5A6B7D;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover,
.close:focus {
    color: #2D4A6B;
    background-color: rgba(201, 168, 118, 0.1);
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #C9A876;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #2D4A6B;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(201, 168, 118, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A876;
    box-shadow: 0 0 0 3px rgba(201, 168, 118, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: linear-gradient(135deg, #C9A876 0%, #E8D4A0 100%);
    color: #2D4A6B;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}

.submit-button:hover {
    background: linear-gradient(135deg, #E8D4A0 0%, #C9A876 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 118, 0.4);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #F5F3F0;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2D4A6B;
    margin-bottom: 20px;
    text-align: center;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 118, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 74, 107, 0.1);
    border-color: #C9A876;
}

.contact-icon {
    color: #C9A876;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2D4A6B;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: #5A6B7D;
    line-height: 1.6;
    margin: 0;
}

.map-placeholder {
    flex: 1;
    height: 300px;
    background: linear-gradient(135deg, #C9A876 0%, #E8D4A0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 118, 0.2);
}

.placeholder-text {
    font-size: 18px;
    font-weight: 500;
    color: #2D4A6B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .accommodation-content,
    .programs-content,
    .dining-content {
        flex-direction: column;
        text-align: center;
    }
    
    .accommodation-text,
    .program-text,
    .dining-text {
        text-align: center;
    }
    
    .accommodation-text h3,
    .program-text h3,
    .dining-text h3 {
        text-align: center;
    }
    
    .accommodation-text p,
    .program-text p,
    .dining-text p {
        text-align: center;
    }
    
    .services-grid,
    .products-grid,
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .accommodation-image,
    .program-image,
    .dining-image {
        height: 250px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .about h2,
    .services h2,
    .accommodation h2,
    .products h2,
    .wellness-programs h2,
    .dining h2,
    .seasonal-experiences h2 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .products-grid,
    .experiences-grid {
        gap: 20px;
    }
    
    .footer-nav {
        gap: 25px;
    }
    
    .footer-nav-section {
        gap: 10px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .close {
        right: 15px;
        top: 15px;
    }
}