/* Reset and base styles */
@import url('cookie-banner.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Sans', 'Yu Gothic', 'Noto Sans JP', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C5F2D;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 100%);
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Centered content blocks */
.about,
.purification,
.services,
.products,
.locations,
.ceremonies,
.mountain-worship {
    text-align: center;
}

.about .container,
.purification .container,
.services .container,
.products .container,
.locations .container,
.ceremonies .container,
.mountain-worship .container {
    text-align: center;
}

.ceremony-content,
.worship-content {
    text-align: left;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #fff;
}

.about h2 {
    font-size: 2rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555;
}

.about-image {
    margin: 2rem 0;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Purification Practices */
.purification {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F8FFFE 0%, #E8F8F5 100%);
}

.purification h2 {
    font-size: 2rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 3rem;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.practice-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.practice-icon {
    margin-bottom: 1rem;
}

.practice-item h3 {
    color: #2C5F2D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.practice-item p {
    color: #666;
    line-height: 1.6;
}

/* Services */
.services {
    padding: 4rem 0;
    background-color: #fff;
}

.services h2 {
    font-size: 2rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.service-item h3 {
    font-size: 1.3rem;
    color: #2C5F2D;
    padding: 1.5rem;
    margin-bottom: 0;
}

.service-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Products */
.products {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF3C4 100%);
}

.products h2 {
    font-size: 2rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.product-item h3 {
    font-size: 1.4rem;
    color: #2C5F2D;
    padding: 1.5rem;
    margin-bottom: 0;
}

.product-item p {
    padding: 0 1.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B35;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem;
    background-color: #4A90E2;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    background-color: #357ABD;
}

/* Locations */
.locations {
    padding: 4rem 0;
    background-color: #fff;
}

.locations h2 {
    font-size: 2rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 3rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.location-item {
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.location-item h3 {
    font-size: 1.3rem;
    color: #2C5F2D;
    padding: 1.5rem;
    margin-bottom: 0;
}

.location-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Ceremonies */
.ceremonies {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFE5CC 0%, #FFEAA7 100%);
}

.ceremonies h2 {
    font-size: 2rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 3rem;
}

.ceremony-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.ceremony-text h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.ceremony-text p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ceremony-text ul {
    list-style: none;
    padding: 0;
}

.ceremony-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.ceremony-text li:before {
    content: "•";
    color: #FF6B35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.ceremony-image {
    text-align: center;
}

.ceremony-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Mountain Worship */
.mountain-worship {
    padding: 4rem 0;
    background-color: #fff;
}

.mountain-worship h2 {
    font-size: 2rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 3rem;
}

.worship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.worship-image {
    text-align: center;
}

.worship-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.worship-text h3 {
    font-size: 1.5rem;
    color: #2C5F2D;
    margin-bottom: 1rem;
}

.worship-text p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.worship-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #4A90E2;
}

.feature h4 {
    color: #2C5F2D;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Contacts */
.contacts {
    padding: 4rem 0;
    background: linear-gradient(135deg, #E8F5E8 0%, #F0F8F0 100%);
}

.contacts h2 {
    font-size: 2rem;
    color: #2C5F2D;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2C5F2D;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #2C5F2D;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    justify-items: end;
}

.footer-links a {
    color: #E8F5E8;
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4A6B4D;
}

.footer-bottom p {
    color: #B8D8BA;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .ceremony-content,
    .worship-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .practices-grid,
    .services-grid,
    .products-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}