:root {
    --font-serif: "Shippori Mincho B1", serif;
}

body {
    font-family: var(--font-serif);

    background-color: #919191;
}

/* アニメーション用のスタイルを追加 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

/* Hero Section Styles---------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('../img/toppage.jpg');
    /* background-attachment: fixed; */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
    z-index: 1;
}
.hero-section * {
    position: relative;
    z-index: 2; /* テキストなどを前面に表示 */
}

.hero-header {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1rem;
    color: white;
    opacity: 0.8;
    font-family: var(--font-serif);
}

.hero-content {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-serif);
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    word-break: keep-all; /* 単語を途中で改行させない */
    white-space: pre-wrap; /* 改行文字を尊重 */
}

.hero-content p {
    font-size: 1.2rem;
    margin: 0;
}

.hero-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.hero-icon i {
    font-size: 24px;
    color: white;
    transition: opacity 0.3s ease;
}

.hero-icon i:hover {
    opacity: 0.8;
}
.hero-decoration {
    position: absolute;
    background-attachment: fixed;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.hero-svg {
    width: 800px;
    height: auto;
    opacity: 0.2;
    transition: opacity 0.3s ease;
    fill: white;
}

.hero-svg:hover {
    opacity: 0.4;
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }

    .hero-svg {
        width: 400px;
    }

}


/* Contact Section Styles ----------------------------------------------------------------*/

.contact-section {
    position: absolute;
    padding: 2rem 1rem;
    text-align: center;
    color: white;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 70%);
    z-index: 10;
}

.contact-container {
    background: rgba(30, 30, 30, 0.9);
    padding: 2rem 1.5rem;
    margin: 0 auto;
    max-width: 1000px;
    min-width: 600px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.contact-phone {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.contact-address {
    font-size: 0.8rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ddd;
}

.contact-hours {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0.25rem 0;
    color: #ccc;
}

.contact-icon {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.contact-icon a i {
    font-size: 2.5rem;
    color: white;
    margin: 0 1.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-icon a i:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.contact-note {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: #ccc;
    opacity: 0.85;
}

/* モバイル向けスタイル */
@media (max-width: 768px) {
    .contact-section {
        min-width: 320px;
        padding: 1rem 0.5rem;
    }

    .contact-container {
        padding: 1.2rem 1rem;
        min-width: 320px;
    }

    .contact-phone {
        font-size: 1.4rem;
    }

    .contact-address,
    .contact-hours {
        font-size: 0.9rem;
    }

    .contact-icon a i {
        font-size: 2rem;
        margin: 0 1rem;
    }

    .contact-note {
        font-size: 1rem;
    }
}


/* Concept Section Styles ----------------------------------------------------------------*/
.concept-section {
    color: white;
    text-align: left;
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); /* グラデーション設定 */
    z-index:3;
}

.concept-title {
    font-family: "Sinhala MN regular", serif;
    font-size: 8rem;
    color: #D3D3D3;
    margin-top: 6rem;
    margin-bottom: 3rem;
    opacity: 0.6;
    text-align: left;
}
.concept-content{
    max-width: 1200px;
    margin: 0 auto;
}

.concept-description {
    text-align: center; /* テキストを中央揃え */
    margin: 0 auto; /* 要素全体を中央揃え */
    margin-bottom: 3rem;
}

.concept-description p {
    margin: 0.5rem 0;
}

.concept-description p:first-child {
    font-size: 1rem;
}

.concept-description p:last-child {
    font-size: 3rem;
}

.concept-description .highlight {
    color: #EBFF00;
}

.concept-icons {
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    max-width:700px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.icon-item svg {
    width: auto;
    height: 60px;
    margin-bottom: 1rem;
}

.icon-item p {
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.concept-footer {
    margin-top: 3rem;
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;

    white-space: nowrap;
    overflow-wrap: break-word; 
}
@media (max-width: 768px) {
    .concept-description p:first-child {
        font-size: 0.7rem;
    }

    .concept-description p:last-child {
        font-size: 1.5rem;
    }
    .icon-item p {
        font-size: 0.75rem;
    }
    .concept-footer {
        font-size: 1rem;
    }
}

/* Image Section Styles ----------------------------------------------------------------*/
.image-section {
    position: relative;
    background-color:#919191;
    text-align: center;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
}

.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cocktail-image {
    width: 33.33%;
    height: calc(33vw); /* PC画面に応じた高さ（縦横比をキープ） */
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cocktail-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {

    .cocktail-image {
        height: 300px; /* スマホ用は固定高さ */
    }
}


/* Bartender Section Styles---------------------------------------------------------------- */

.bartender-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}
.bartender-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center; /* 高さを揃える */
    justify-content: space-between;
    padding: 4rem 1rem; /* 上下左右の余白を調整 */
    gap: 2rem; /* 写真とテキストの間隔 */
    flex-direction: row-reverse; /* 写真を右側に配置 */
}
.bartender-title {
    font-family: "Sinhala MN regular", serif;
    font-size: 8rem;
    color: #D3D3D3;
    margin-bottom: 3rem;
    opacity: 0.6;
    text-align: left;
}
.bartender-image {
    flex: 1; /* 写真エリアの幅を調整 */
    text-align: center;
}

.bartender-image img {
    max-width: 100%; /* 幅を親要素に収める */
    height: auto; /* 縦横比を保持 */
    border-radius: 10px; /* 写真に少し丸みを追加（任意） */
}

.bartender-text {
    flex: 2; /* テキストエリアの幅を調整 */
    text-align: left;
    font-size: 1rem;
}

.bartender-text p {
    margin: 1rem 0;
    line-height: 1.8;
}

.bartender-text .note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .bartender-title {
        font-size: 5rem;
    }
    .bartender-content {
        flex-direction: column; /* 小さい画面で縦並び */
        text-align: center;
    }

    .bartender-image {
        margin-bottom: 2rem; /* 縦並び時の余白 */
        padding: 0 0%;
    }

    .bartender-text {
        font-size: 0.75rem;
    }
    .bartender-text .note {
        font-size: 0.7rem;
    }
}

/* Menu Section Styles --------------------------------------------------------------*/
.menu-section {
    background-color: #919191;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); /* グラデーション設定 */
}

.menu-title {
    font-family: "Sinhala MN regular", serif;
    font-size: 8rem;
    color: #D3D3D3;
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: 0.6;
    margin: 0;
    z-index: 1;
}

.menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    margin: 8rem 0 4rem;
    z-index: 2;
}

.menu-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.menu-icon {
    color: white;
    width: auto; /* 全てのSVGの幅を統一 */
    height: 80px;
}

.menu-item p {
    font-size: 1.2rem;
    margin: 0;
}

.menu-line-vertical {
    width: 1px;
    height: 100px;
    background-color: white;
}

.menu-description {
    margin: 2rem 0;
    font-size: 1rem;
    line-height: 1.6;
    white-space: nowrap;
    overflow-wrap: break-word; 
}

.menu-description p {
    margin: 0.5rem 0;
}

.menu-line-horizontal {
    border: none;
    border-top: 1px solid white;
    width: 60%;
    margin: 2rem auto;
}

.menu-footer {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.menu-footer p {
    margin: 0.5rem 0;
}

@media (max-width: 768px) {

    .menu-line-vertical {
        display: none;
    }

    .menu-title, .bartender-title, .concept-title{
        font-size: 3rem;
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 2rem;
        text-align: left;
    }

    .menu-line-horizontal {
        width: 80%;
    }
}

.footer {
    background-color: #333333;
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.footer-icon {
    align-self: flex-end;
}

.footer-icon a i {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
    color: white;
}

.footer-icon a:hover i {
    opacity: 0.8;
}

@media (max-width: 768px) {

}

/* Schedule Section Styles */
.schedule-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.schedule-title {
    font-family: "Sinhala MN regular", serif;
    font-size: 8rem;
    color: #D3D3D3;
    margin-bottom: 3rem;
    margin-top: 25rem;
    opacity: 0.6;
    text-align: left;
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.schedule-calendar {
    width: 100%;
    height: 600px;
    border: none;
    background-color: transparent;
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 2rem 1rem;
    }

    .schedule-title {
        font-size: 4rem;
        margin-bottom: 2rem;
    }

    .schedule-calendar {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .schedule-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .schedule-calendar {
        height: 300px;
    }
}