/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Circe Font Face */
@font-face {
    font-family: 'Circe';
    src: url('fonts/Circe-Regular.woff2') format('woff2'),
         url('fonts/Circe-Regular.woff') format('woff'),
         url('fonts/Circe-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circe';
    src: url('fonts/Circe-Bold.woff2') format('woff2'),
         url('fonts/Circe-Bold.woff') format('woff'),
         url('fonts/Circe-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Circe';
    src: url('fonts/Circe-Light.woff2') format('woff2'),
         url('fonts/Circe-Light.woff') format('woff'),
         url('fonts/Circe-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

/* Background Graphics */
.background-graphics {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: url('../img/bk_pc_01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile background image */
@media (max-width: 768px) {
    .background-graphics {
        background-image: url('../img/bk_sp_01.jpg');
    }
}

/* Hero Section */
.hero {
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    margin-bottom: 5rem;
    text-align: center;
}

.logo-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #9370DB;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.main-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'Noto Serif JP', serif;
}

.sub-heading {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333333;
    opacity: 0.8;
}



/* Content Section */
.content {
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
}

.section-title {
    /* margin-top: 50px; */
}

.section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #9370DB;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    line-height: 1.4;
    font-family: 'Noto Serif JP', serif;
}

/* Salon Grid Box */
.salon-grid-box {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    background-color: rgba(240, 239, 248, 0.8);
    padding: 30px 20px;
}

/* Salon Grid */
.salon-grid {
    display: none;
    /* display: grid; */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.salon-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.salon-card:hover {
    transform: translateY(-5px);
}

.salon-image {
    max-width: 100%;
}

.salon-image-file {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.salon-card:hover .salon-image-file {
    transform: scale(1.05);
}

.salon-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.sp-only {
    display: none;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 15px 40px;
    }
    .logo {
        margin-bottom: 2.5rem;
    }
    .logo-image {
        width: 30%;
    }
   
    .main-heading {
        font-size: 1.8rem;
    }
    
    .sub-heading {
        font-size: 1rem;
    }
    .sp-only {
        display: block;
    }
    
    .content {
        padding: 40px 0 60px;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .salon-grid-box {
        padding: 20px 15px;
    }
    
    .salon-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 15px;
    }
    
    .salon-card {
        padding: 0;
    }
    

}

@media (max-width: 480px) {
    .hero {
        padding: 40px 10px 30px;
    }
      
    .main-heading {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .content {
        padding: 30px 0 40px;
    }
    
    .section-heading {
        font-size: 1.3rem;
    }
    
    
    
    .section-heading::after {
        content: "\A";
        white-space: pre;
    }
    
    .salon-grid {
        gap: 7px;
        padding: 20px 10px;
    }
}



@media (max-width: 480px) {

}

/* Additional animations for enhanced visual appeal */
.salon-card {
    animation: fadeInUp 0.6s ease-out;
}

.salon-card:nth-child(1) { animation-delay: 0.1s; }
.salon-card:nth-child(2) { animation-delay: 0.2s; }
.salon-card:nth-child(3) { animation-delay: 0.3s; }
.salon-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Popular Area List */
.popular_area_list {
    list-style: none;
}

/* Footer */
.footer {
    background-color: rgba(240, 239, 248, 0.9);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-image {
    max-width: 150px;
    height: auto;
    display: block;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #9370DB;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

.footer-heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #9370DB;
}

.footer-bottom {
    border-top: 1px solid rgba(147, 112, 219, 0.2);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    color: #666666;
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-logo-image {
        max-width: 120px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 25px;
        padding: 0 10px;
    }
    
    .footer-logo-image {
        max-width: 100px;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
} 