/* ================================= */
/*        DEFINISI FONT KUSTOM       */
/* ================================= */
@font-face {
    font-family: 'AgencyFB';
    src: url('../fonts/AGENCYB.TTF') format('truetype');
    font-weight: bold; 
}
@font-face {
    font-family: 'LibreBaskerville';
    src: url('../fonts/LibreBaskerville-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'LibreBaskerville';
    src: url('../fonts/LibreBaskerville-Bold.ttf') format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: 'LibreBaskerville';
    src: url('../fonts/LibreBaskerville-Italic.ttf') format('truetype');
    font-style: italic;
}

/* ================================= */
/*          GAYA DASAR               */
/* ================================= */
body {
    font-family: 'AgencyFB', sans-serif;
    margin: 0;
    color: #333;
    background-color: #f4f4f4;
    font-weight: bold; 
    letter-spacing: 0.5px;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'LibreBaskerville', serif;
}
main {
    background-color: #fdf5f5;
}
.bg-light {
    background-color: #fdf5f5;
}
.bg-dark {
    background-color: #4a4a3a;
    color: white;
}

/* ================================= */
/*          HEADER                   */
/* ================================= */
header {
    background-color: #4a4a3a;
    padding: 15px 0;
    border-bottom: 5px solid white;
}
header .container {
    display: flex;
    justify-content: center;
}
nav {
    width: 100%;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
}
nav a {
    color: white;
    text-decoration: none;
    padding: 10px 25px; 
    font-size: 1.2em;
}
nav a.active, nav a:hover {
    font-weight: bold;
}
.logo-item {
    margin: 0 20px;
}
.logo-item img {
    height: 70px;
    background-color: #f0e6e6;
    padding: 8px;
    border-radius: 10px;
    display: block;
}

/* ================================= */
/*          HERO SECTIONS            */
/* ================================= */
.hero {
    background: url('../img/PICT3475.JPG') no-repeat center center/cover;
    height: 110vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
}
.hero h1 {
    font-size: 3.5em;
    text-shadow: 2px 2px 4px #000;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background-size: cover;
    height: 80vh;
    background-position: center;
    border-radius: 20px;
    margin: 20px;
}
.page-hero h2 {
    position: absolute;
    bottom: 40px;
    color: white;
    font-size: 3.5em;
    line-height: 1.2;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    padding: 0;
    margin: 0;
    max-width: 50%;
}

.profil-hero h2, .treatment-hero h2 { left: 60px; text-align: left; }
.profil-hero::after, .treatment-hero::after { right: 50px; }
.contact-hero h2 { right: 60px; text-align: right; }
.contact-hero::after { left: 50px; }

/* ================================= */
/*          HALAMAN UTAMA (INDEX)    */
/* ================================= */
.home-section {
    padding: 60px 0;
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.content-grid.reverse .text-content {
    order: -1;
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
}
.image-gallery img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    border-radius: 10px;
}
.text-content h2 {
    font-size: 3em;
    color: #f0e6e6;
}
.text-content p {
    font-family: 'AgencyFB', sans-serif;
    font-size: 1.2em;
    line-height: 1.5;
}
.btn {
    display: inline-block;
    background-color: #d3b8b8;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.1em;
}

/* ================================= */
/*          HALAMAN PROFIL           */
/* ================================= */
.page-content {
    padding: 40px 0;
}
.page-content h3 {
    font-size: 2.5em; 
    color: #4a4a3a;
}
.page-content p {
    line-height: 1.6;
    font-size: 1.2em;
}
.bg-dark .page-content h3 {
    color: #f0e6e6;
}
.bg-dark .page-content p {
    color: #f0f0f0;
}
.image-content img {
    width: 100%;
    border-radius: 15px;
}

/* ================================= */
/*          HALAMAN TREATMENT        */
/* ================================= */
.treatment-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.section-title {
    font-size: 3em;
    margin-bottom: 40px;
    color: #4a4a3a;
}
.reflexology-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    grid-template-rows: auto auto;
    gap: 20px 40px;
    align-items: center;
    grid-template-areas: "main-img desc desc" "main-img pricing sub-img";
}
.reflex-main-img { grid-area: main-img; }
.reflex-main-img img { width: 100%; border-radius: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.reflex-desc { grid-area: desc; font-size: 1.2em; line-height: 1.6; }
.reflex-pricing { grid-area: pricing; text-align: center; }
.reflex-pricing i { font-size: 2.5em; display: block; margin-bottom: 15px; }
.reflex-pricing p { margin: 5px 0; font-size: 1.3em; }
.reflex-sub-img { grid-area: sub-img; }
.reflex-sub-img img { width: 100%; border-radius: 10px; }
.two-card-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; position: relative; z-index: 2; }
.treatment-card-large h3 { font-size: 2.5em; color: #4a4a3a; }
.treatment-card-large p { font-size: 1.2em; line-height: 1.6;}
.pricing-large { display: flex; align-items: center; gap: 20px; margin-top: 20px; }
.pricing-large i { font-size: 2.5em; }
.pricing-large p { margin: 0; font-size: 1.3em; }
.decorative-scrub-bg { position: absolute; bottom: -80px; right: -100px; width: 450px; z-index: 1; opacity: 0.8; }
.decorative-scrub-top { display: block; margin: -100px auto 0; width: 250px; position: relative; z-index: 3; }
.side-by-side-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }
.therapy-item { display: grid; grid-template-columns: 1fr auto; gap: 20px; border-bottom: 1px solid rgba(240, 240, 240, 0.2); padding-bottom: 20px; margin-bottom: 20px; }
.therapy-item:last-child { border-bottom: none; }
.therapy-item h3 { font-size: 2.5em; color: #f0e6e6; margin: 0; }
.therapy-item p { grid-column: 1 / 2; line-height: 1.6; font-size: 1.2em; }
.pricing-side { grid-column: 2 / 3; grid-row: 1 / 3; text-align: center; }
.pricing-side i { font-size: 2em; margin-bottom: 10px; }
.pricing-side p { font-size: 1.1em; line-height: 1.4; }
.therapy-image-content img { width: 100%; border-radius: 15px; }

/* ================================= */
/*          HALAMAN KONTAK           */
/* ================================= */
.contact-page-main { background-color: #fdf5f5; }
.outlet-main-section { padding-top: 50px; }
.outlet-main-grid { display: grid; grid-template-columns: 1fr 1.2fr; max-width: 1200px; margin: 0 auto; }
.outlet-main-img { position: relative; }
.outlet-main-img img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay { position: absolute; bottom: -0px; left: 20%; transform: translateX(-50%); width: 30%; border-radius: 0px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.map-overlay img { width: 60%; display: block; }
.outlet-main-info-wrapper { background-color: white; position: relative; padding: 40px 50px; border-top-right-radius: 15px; border-bottom-right-radius: 15px; }
.outlet-main-info-wrapper::before { content: ''; position: absolute; background-color: white; width: 100px; height: 100%; top: 0; left: -50px; border-top-left-radius: 50px; border-bottom-left-radius: 50px; }
.outlet-main-info h3 { font-size: 2.8em; color: #4a4a3a; }
.outlet-main-info p { font-size: 1.2em; line-height: 1.6; }
.outlet-main-info ul { list-style: none; padding: 0; margin-top: 30px; }
.outlet-main-info li { display: flex; align-items: center; gap: 15px; font-size: 1.2em; margin-bottom: 10px; }
.outlet-main-info li i { font-size: 1.5em; color: #4a4a3a; }
.other-outlets-section { padding: 80px 0; }
.outlet-title { text-align: center; font-size: 3em; margin-bottom: 40px; color: #4a4a3a; }
.outlet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.outlet-card { text-align: center; }
.outlet-card-img { border-radius: 20px; overflow: hidden; margin-bottom: 15px; }
.outlet-card-img img { width: 100%; display: block; }
.outlet-card h4 { font-size: 1.8em; margin: 10px 0; }
.outlet-info-item { display: flex; align-items: flex-start; gap: 10px; text-align: left; margin-bottom: 5px; font-size: 1.1em; }
.outlet-info-item i { color: #4a4a3a; padding-top: 4px; }

/* ================================= */
/*          FOOTER                   */
/* ================================= */
footer {
    background-color: #73a061; 
    padding: 20px 0;
    color: #333;
}
footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.socials a {
    color: #333;
    text-decoration: none;
    font-size: 1.1em;
    margin: 0 15px;
}
.socials a:hover {
    color: #4a4a3a; 
}
.socials i {
    margin-right: 8px; 
    font-size: 1.2em; 
    vertical-align: middle; 
}
.copyright p {
    font-size: 1em;
    margin: 0;
}