/*==================================================
 桜旅日和 - style.css Version 1.0
 Author : ChatGPT
==================================================*/


/*==================================================
 Reset
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    background:#FFFDFD;

    color:#333;

    font-family:"Zen Maru Gothic",sans-serif;

    line-height:1.8;

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}


/*==================================================
 Theme Color
==================================================*/

:root{

    --main:#F7C8D8;

    --accent:#D97997;

    --text:#333333;

    --bg:#FFFDFD;

    --gray:#777777;

    --shadow:0 12px 35px rgba(0,0,0,.08);

    --radius:20px;

}


/*==================================================
 Common
==================================================*/

.container{

    width:min(1180px,92%);

    margin:auto;

}

section{

    padding:110px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:42px;

    font-family:"Cormorant Garamond",serif;

    margin-bottom:10px;

    color:var(--text);

}

.section-title p{

    color:var(--gray);

    letter-spacing:4px;

    font-size:14px;

}


/*==================================================
 Header
==================================================*/

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    padding:24px 0;

}

.header-inner{

    width:min(1200px,92%);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:28px;

    font-weight:bold;

}

.logo span{

    margin-left:10px;

}

.global-nav ul{

    display:flex;

    gap:34px;

}

.global-nav a{

    position:relative;

    transition:.3s;

}

.global-nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}

.global-nav a:hover::after{

    width:100%;

}

.hamburger{

    display:none;

}


/*==================================================
 Hero
==================================================*/

.hero{

    position:relative;

    width:100%;

    height:100vh;

    background:url("../images/hero/hero.jpg") center center / cover no-repeat;

    overflow:hidden;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.28);

}

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:inherit;

    animation:heroZoom 22s ease-in-out infinite alternate;

    z-index:-1;

}

.hero-inner{

    position:relative;

    z-index:5;

    text-align:center;

    color:#fff;

}

.hero-sub{

    letter-spacing:6px;

    margin-bottom:20px;

    opacity:.9;

    font-size:15px;

}

.hero h1{

    font-size:82px;

    font-family:"Cormorant Garamond",serif;

    margin-bottom:25px;

    text-shadow:0 10px 30px rgba(0,0,0,.25);

}

.hero-copy{

    font-size:24px;

    margin-bottom:45px;

}

.hero-button{

    display:inline-block;

    background:#fff;

    color:var(--accent);

    padding:18px 48px;

    border-radius:50px;

    font-weight:bold;

    transition:.35s;

    box-shadow:var(--shadow);

}

.hero-button:hover{

    transform:translateY(-5px);

}

.scroll{

    position:absolute;

    left:50%;

    bottom:45px;

    transform:translateX(-50%);

    text-align:center;

}

.scroll p{

    font-size:12px;

    letter-spacing:4px;

    margin-top:10px;

}

.scroll span{

    display:block;

    width:2px;

    height:70px;

    background:#fff;

    margin:auto;

    animation:scrollLine 2s infinite;

}
/*==================================================
Hero Slider
==================================================*/

.hero-slider{

    position:absolute;

    inset:0;

    z-index:0;

}

.slide{

    position:absolute;

    inset:0;

    background-size:cover;

    background-position:center;

    opacity:0;

    transition:opacity 1.5s ease;

}

.slide.active{

    opacity:1;

}
.slide:nth-child(1){

    background-image:url("../images/hero/hero.jpg");

}

.slide:nth-child(2){

    background-image:url("../images/hero/about.jpg");

}

.slide:nth-child(3){

    background-image:url("../images/hero/tsushima.jpg");

}

.slide:nth-child(4){

    background-image:url("../images/hero/hero.jpg");

}


/*==================================================
 Animation
==================================================*/

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}

@keyframes scrollLine{

    0%{

        transform:scaleY(0);

        transform-origin:top;

    }

    50%{

        transform:scaleY(1);

        transform-origin:top;

    }

    51%{

        transform-origin:bottom;

    }

    100%{

        transform:scaleY(0);

        transform-origin:bottom;

    }

}
/*==================================================
 About
==================================================*/

.about{

    background:#ffffff;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-text h3{

    font-size:38px;

    margin-bottom:30px;

    color:var(--text);

    line-height:1.4;

}

.about-text p{

    margin-bottom:20px;

    color:#555;

    font-size:17px;

}

.about-image img{

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:.5s;

}

.about-image img:hover{

    transform:scale(1.03);

}


/*==================================================
 Tsushima
==================================================*/

.feature{

    background:#FFF8FA;

}

.feature-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.feature-image{

    overflow:hidden;

    border-radius:var(--radius);

}

.feature-image img{

    border-radius:var(--radius);

    transition:.7s;

    box-shadow:var(--shadow);

}

.feature-image:hover img{

    transform:scale(1.08);

}

.tag{

    display:inline-block;

    background:var(--accent);

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.feature-text h2{

    font-size:48px;

    line-height:1.3;

    margin-bottom:30px;

}

.feature-text p{

    color:#555;

    margin-bottom:40px;

}

.more-button{

    display:inline-block;

    padding:16px 38px;

    border:2px solid var(--accent);

    color:var(--accent);

    border-radius:50px;

    transition:.35s;

    font-weight:bold;

}

.more-button:hover{

    background:var(--accent);

    color:#fff;

    transform:translateY(-4px);

}


/*==================================================
 Photo Gallery
==================================================*/

.gallery{

    background:#ffffff;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.gallery-grid img{

    aspect-ratio:1 / 1;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:.45s;

    box-shadow:var(--shadow);

}

.gallery-grid img:hover{

    transform:translateY(-8px) scale(1.03);

}


/*==================================================
 Common Card
==================================================*/

.card{

    background:#fff;

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

.card img{

    aspect-ratio:16/10;

    object-fit:cover;

}

.card-body{

    padding:30px;

}

.card-body h3{

    margin-bottom:15px;

    font-size:22px;

}

.card-body p{

    color:#666;

    margin-bottom:20px;

}

.card-body a{

    color:var(--accent);

    font-weight:bold;

}


/*==================================================
 Fade Animation
==================================================*/

.fade{

    opacity:0;

    transform:translateY(50px);

    transition:1s;

}

.fade.show{

    opacity:1;

    transform:translateY(0);

}
/*==================================================
 Latest Posts
==================================================*/

.latest{

    background:#FFF8FA;

}

.card-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

.card img{

    aspect-ratio:16/10;

    object-fit:cover;

}

.card-body{

    padding:25px;

}

.card-body h3{

    font-size:22px;

    margin-bottom:15px;

}

.card-body p{

    color:#666;

    margin-bottom:20px;

}

.card-body a{

    color:var(--accent);

    font-weight:bold;

}

/*==================================================
 Travel
==================================================*/

.travel{

    background:#fff;

}

.travel-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.travel-box{

    background:#FFF8FA;

    border-radius:20px;

    padding:70px 20px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.travel-box:hover{

    transform:translateY(-8px);

    background:var(--accent);

    color:#fff;

}

.travel-box h3{

    font-size:26px;

}

/*==================================================
 YouTube
==================================================*/

.movie{

    background:#FFF8FA;

}

.movie-box{

    max-width:900px;

    margin:auto;

    padding:60px;

    background:#fff;

    border-radius:25px;

    text-align:center;

    box-shadow:var(--shadow);

}

.movie-box h3{

    font-size:34px;

    margin-bottom:25px;

}

.movie-box p{

    color:#666;

    margin-bottom:35px;

}

.youtube-placeholder{

    height:400px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:3px dashed #ddd;

    border-radius:20px;

    color:#888;

    font-size:20px;

}

/*==================================================
 Profile
==================================================*/

.profile{

    background:#fff;

}

.profile-wrapper{

    display:grid;

    grid-template-columns:300px 1fr;

    gap:70px;

    align-items:center;

}

.profile-image img{

    width:280px;

    height:280px;

    object-fit:cover;

    border-radius:50%;

    box-shadow:var(--shadow);

}

.profile-text h3{

    font-size:36px;

    margin-bottom:20px;

}

.profile-text p{

    color:#555;

    margin-bottom:18px;

}

/*==================================================
 Contact
==================================================*/

.contact{

    background:#FFF8FA;

    text-align:center;

}

.contact-message{

    max-width:700px;

    margin:0 auto 40px;

    color:#555;

}

.contact-button{

    display:inline-block;

    background:var(--accent);

    color:#fff;

    padding:18px 45px;

    border-radius:50px;

    transition:.35s;

    box-shadow:var(--shadow);

}

.contact-button:hover{

    transform:translateY(-6px);

}

/*==================================================
 Footer
==================================================*/

footer{

    background:#2f2f2f;

    color:#fff;

    padding:80px 0 40px;

}

.footer-inner{

    width:min(1100px,92%);

    margin:auto;

    text-align:center;

}

.footer-logo{

    font-size:38px;

    margin-bottom:20px;

}

.footer-copy{

    color:#ccc;

    margin-bottom:40px;

}

.footer-menu{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.footer-menu a{

    transition:.3s;

}

.footer-menu a:hover{

    color:var(--main);

}

.copyright{

    border-top:1px solid rgba(255,255,255,.15);

    padding-top:30px;

    color:#999;

    font-size:14px;

}

/*==================================================
 Back To Top
==================================================*/

#page-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:var(--accent);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    box-shadow:var(--shadow);

    transition:.35s;

    z-index:999;

}

#page-top:hover{

    transform:translateY(-5px);

}
/*==================================================
 Responsive Design
==================================================*/

/* ---------- 1200px ---------- */

@media (max-width:1200px){

    .container,
    .header-inner,
    .footer-inner{

        width:min(94%,1100px);

    }

}

/* ---------- 992px ---------- */

@media (max-width:992px){

    section{

        padding:90px 0;

    }

    .hero h1{

        font-size:64px;

    }

    .hero-copy{

        font-size:20px;

    }

    .about-wrapper,
    .feature-wrapper{

        grid-template-columns:1fr;

        gap:50px;

    }

    .profile-wrapper{

        grid-template-columns:1fr;

        text-align:center;

    }

    .profile-image img{

        margin:auto;

    }

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .card-grid{

        grid-template-columns:1fr;

    }

    .travel-grid{

        grid-template-columns:repeat(2,1fr);

    }

}


/* ---------- 768px ---------- */

@media (max-width:768px){

    #header{

        padding:18px 0;

    }

    .logo{

        font-size:22px;

    }

    .global-nav{

        position:fixed;

        top:0;

        right:-100%;

        width:280px;

        height:100vh;

        background:#ffffff;

        transition:.4s;

        box-shadow:-10px 0 30px rgba(0,0,0,.08);

        z-index:998;

        padding-top:100px;

    }

    .global-nav.active{

        right:0;

    }

    .global-nav ul{

        flex-direction:column;

        gap:0;

    }

    .global-nav li{

        border-bottom:1px solid #eee;

    }

    .global-nav a{

        display:block;

        padding:20px 35px;

    }

    .hamburger{

        display:flex;

        width:45px;

        height:45px;

        border:none;

        background:none;

        cursor:pointer;

        flex-direction:column;

        justify-content:center;

        gap:6px;

        z-index:999;

    }

    .hamburger span{

        width:28px;

        height:3px;

        background:#333;

        transition:.3s;

    }

    .hero{

        height:90vh;

    }

    .hero h1{

        font-size:48px;

    }

    .hero-copy{

        font-size:18px;

        padding:0 20px;

    }

    .hero-button{

        padding:16px 35px;

    }

    .section-title h2{

        font-size:34px;

    }

    .feature-text h2{

        font-size:36px;

    }

    .about-text h3{

        font-size:30px;

    }

    .movie-box{

        padding:40px 25px;

    }

    .youtube-placeholder{

        height:240px;

    }
    .category-grid{

     grid-template-columns:repeat(2,1fr);

    }
    .feature-grid{

     grid-template-columns:repeat(2,1fr);

    }
    .course-item{

    flex-direction:column;

}

.time{

    width:120px;

}
.next-grid{

    grid-template-columns:repeat(2,1fr);

}

}


/* ---------- 576px ---------- */

@media (max-width:576px){

    section{

        padding:70px 0;

    }

    .hero h1{

        font-size:38px;

    }

    .hero-sub{

        font-size:12px;

        letter-spacing:3px;

    }

    .hero-copy{

        font-size:16px;

    }

    .gallery-grid{

        grid-template-columns:1fr;

    }

    .travel-grid{

        grid-template-columns:1fr;

    }

    .profile-image img{

        width:220px;

        height:220px;

    }

    .footer-menu{

        flex-direction:column;

        gap:18px;

    }

    #page-top{

        width:48px;

        height:48px;

        right:20px;

        bottom:20px;

        font-size:18px;

    }
    .category-grid{

     grid-template-columns:1fr;

    }
    .feature-grid{

     grid-template-columns:1fr;

    }
    .next-grid{

     grid-template-columns:1fr;

    }

}


/*==================================================
 Utility
==================================================*/

.text-center{

    text-align:center;

}

.mt-30{

    margin-top:30px;

}

.mb-30{

    margin-bottom:30px;

}

.shadow{

    box-shadow:var(--shadow);

}

.radius{

    border-radius:var(--radius);

}


/*==================================================
 End of style.css
 Version 1.0
==================================================*/
/*==================================================
 Sakura Effect
==================================================*/

.petal{

    position:absolute;

    width:14px;

    height:14px;

    background:#f7bfd2;

    border-radius:60% 40% 70% 30%;

    pointer-events:none;

    animation:petalFall linear forwards;

    z-index:9999;

}

@keyframes petalFall{

    from{

        transform:translate(0,0) rotate(0deg);

        opacity:1;

    }

    to{

        transform:
        translate(var(--x),220px)
        rotate(var(--r));

        opacity:0;

    }

}


/*==================================================
 Lightbox
==================================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    cursor:pointer;

}

.lightbox img{

    width:min(90%,1000px);

    border-radius:20px;

    box-shadow:0 20px 60px rgba(0,0,0,.4);

}
/*==================================================
Category Navigation
==================================================*/

.category-nav{

    background:#ffffff;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.category-card{

    background:#FFF8FA;

    padding:35px 20px;

    border-radius:20px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.category-card:hover{

    transform:translateY(-8px);

    background:var(--accent);

    color:#fff;

}

.category-card:hover p{

    color:#fff;

}

.category-icon{

    font-size:42px;

    margin-bottom:20px;

}

.category-card h3{

    margin-bottom:10px;

    font-size:24px;

}

.category-card p{

    color:#666;

    font-size:15px;

    line-height:1.6;

}
/*==================================================
Features
==================================================*/

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-box{

    background:#fff;

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.3s;

}

.feature-box:hover{

    transform:translateY(-10px);

}

.feature-icon{

    font-size:48px;

    margin-bottom:20px;

}

.feature-box h3{

    margin-bottom:15px;

}

.feature-box p{

    color:#666;

    line-height:1.8;

}
/*==================================================
Model Course
==================================================*/

.course-list{

    max-width:800px;

    margin:60px auto 0;

}

.course-item{

    display:flex;

    gap:30px;

    margin-bottom:35px;

    align-items:flex-start;

}

.time{

    min-width:90px;

    background:#f6d6de;

    color:#b85c74;

    font-weight:bold;

    text-align:center;

    padding:12px;

    border-radius:30px;

}

.course-content{

    flex:1;

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.course-content h3{

    margin-bottom:10px;

}
/*==================================================
Next Content
==================================================*/

.next-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:50px;

}

.next-card{

    background:#fff;

    border-radius:18px;

    text-align:center;

    padding:35px 20px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.next-card:hover{

    transform:translateY(-10px);

    background:#fdf0f4;

}

.next-card span{

    font-size:40px;

    display:block;

    margin-bottom:15px;

}

.next-card h3{

    color:#444;

}
/*==================================================
Footer
==================================================*/

#footer{

    background:#222;

    color:#fff;

    padding:80px 20px 40px;

    margin-top:120px;

}

.footer-inner{

    max-width:1200px;

    margin:auto;

    text-align:center;

}

.footer-logo h2{

    font-size:34px;

    margin-bottom:15px;

}

.footer-logo p{

    color:#bbb;

}

.footer-nav{

    margin:40px 0;

}

.footer-nav a{

    color:#fff;

    margin:0 18px;

    text-decoration:none;

}

.footer-nav a:hover{

    color:#ffbfd3;

}

.footer-sns{

    margin-bottom:40px;

}

.footer-sns a{

    display:inline-block;

    margin:0 15px;

    color:#ffbfd3;

    text-decoration:none;

}

.copyright{

    font-size:14px;

    color:#888;

}
.footer-nav{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}
/*==================================================
Breadcrumb
==================================================*/

.breadcrumb{

    background:#fafafa;

    padding:18px 0;

    border-bottom:1px solid #eee;

}

.breadcrumb .container{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:14px;

}

.breadcrumb a{

    color:#d84d6a;

    text-decoration:none;

}

.breadcrumb span{

    color:#666;

}
/*=========================================
Latest Posts
==========================================*/

.latest-posts{

padding:100px 0;

}

.post-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.post-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.3s;

}

.post-card:hover{

transform:translateY(-8px);

}

.post-card img{

width:100%;

height:220px;

object-fit:cover;

}

.post-card h3{

padding:20px 20px 10px;

font-size:22px;

}

.post-card p{

padding:0 20px 20px;

color:#777;

}
/*=========================================
Travel Blog Cards
==========================================*/

.latest-posts{

padding:120px 0;

background:#fffafc;

}

.latest-posts h2{

text-align:center;

font-size:42px;

margin-bottom:60px;

font-family:"Cormorant Garamond",serif;

color:#444;

}

.post-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:40px;

}

.post-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.post-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.post-card img{

width:100%;

height:240px;

object-fit:cover;

transition:.5s;

}

.post-card:hover img{

transform:scale(1.05);

}

.post-card-content{

padding:25px;

}

.post-card h3{

font-size:24px;

margin-bottom:15px;

line-height:1.5;

}

.post-card .date{

font-size:14px;

color:#999;

margin-bottom:18px;

}

.post-card .excerpt{

color:#666;

line-height:2;

margin-bottom:20px;

}

.readmore{

display:inline-block;

padding:12px 26px;

background:#f7b6c8;

color:#fff;

border-radius:50px;

transition:.3s;

text-decoration:none;

}

.readmore:hover{

background:#ef8cab;

}
/*=========================================
Search
==========================================*/

.search-form{

display:flex;
align-items:center;
gap:10px;

}

.search-form input{

width:220px;

padding:12px 18px;

border-radius:50px;

border:1px solid #ddd;

font-size:15px;

outline:none;

transition:.3s;

}

.search-form input:focus{

border-color:#ef8cab;

box-shadow:0 0 15px rgba(239,140,171,.3);

}

.search-form button{

width:46px;
height:46px;

border:none;

border-radius:50%;

background:#ef8cab;

color:#fff;

cursor:pointer;

transition:.3s;

font-size:18px;

}

.search-form button:hover{

background:#d96d92;

}
/*=========================================
Featured
==========================================*/

.featured{

padding:100px 0;

background:#fff;

}

.featured h2{

text-align:center;

font-size:42px;

margin-bottom:60px;

}

.featured-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.featured-card{

background:#fffafc;

border-radius:24px;

padding:40px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.3s;

}

.featured-card:hover{

transform:translateY(-10px);

}

.featured-card h3{

font-size:24px;

margin-bottom:20px;

}

.featured-card p{

line-height:2;

margin-bottom:30px;

color:#666;

}

.featured-card a{

display:inline-block;

padding:12px 24px;

border-radius:50px;

background:#ef8cab;

color:#fff;

text-decoration:none;

transition:.3s;

}

.featured-card a:hover{

background:#d96d92;

}
/*=========================================
Popular Spots
==========================================*/

.popular-spots{

padding:100px 0;

background:#fff5f8;

}

.popular-spots h2{

text-align:center;

font-size:42px;

margin-bottom:60px;

}

.spots-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:35px;

}

.spot-card{

background:#fff;

padding:35px;

border-radius:24px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.3s;

}

.spot-card:hover{

transform:translateY(-8px);

}

.spot-card h3{

font-size:24px;

margin-bottom:18px;

}

.spot-card p{

line-height:2;

color:#666;

margin-bottom:25px;

}

.spot-card a{

display:inline-block;

padding:10px 22px;

border-radius:50px;

background:#ef8cab;

color:#fff;

text-decoration:none;

}

.spot-card a:hover{

background:#d96d92;

}
/*=========================================
Single Post
==========================================*/

.single-post{

padding:80px 0;

background:#fffafc;

}

.post-hero img{

width:100%;

height:520px;

object-fit:cover;

display:block;

}

.post-container{

max-width:900px;

margin:auto;

background:#fff;

margin-top:-70px;

position:relative;

padding:60px;

border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.post-date{

color:#999;

margin-bottom:20px;

font-size:15px;

}

.post-container h1{

font-size:42px;

line-height:1.5;

margin-bottom:40px;

}

.post-content{

font-size:18px;

line-height:2.2;

color:#444;

}

.post-content img{

max-width:100%;

height:auto;

border-radius:20px;

margin:40px 0;

}
/*=========================================
Related
==========================================*/

.related-posts{

margin-top:100px;

}

.related-posts h2{

text-align:center;

font-size:36px;

margin-bottom:50px;

}
/*=========================================
Post Navigation
==========================================*/

.post-navigation{

display:flex;

justify-content:space-between;

gap:30px;

margin:100px 0;

}

.post-navigation div{

flex:1;

}

.post-navigation a{

display:block;

padding:30px;

background:#fff;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

text-decoration:none;

color:#444;

transition:.3s;

}

.post-navigation a:hover{

transform:translateY(-5px);

background:#fff5f8;

}
/*=========================================
404 Page
==========================================*/

.error-page{

padding:140px 0;

background:#fffafc;

text-align:center;

}

.error-box{

max-width:800px;

margin:auto;

background:#fff;

padding:80px;

border-radius:30px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.error-box h1{

font-size:120px;

color:#ef8cab;

margin-bottom:10px;

}

.error-box h2{

font-size:42px;

margin-bottom:30px;

}

.error-box p{

font-size:18px;

line-height:2;

color:#666;

margin-bottom:50px;

}

.error-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-main,
.btn-sub{

padding:16px 34px;

border-radius:50px;

text-decoration:none;

font-weight:bold;

transition:.3s;

}

.btn-main{

background:#ef8cab;

color:#fff;

}

.btn-main:hover{

background:#d96d92;

}

.btn-sub{

background:#fff;

color:#ef8cab;

border:2px solid #ef8cab;

}

.btn-sub:hover{

background:#ef8cab;

color:#fff;

}
/*=========================================
Heading Design
==========================================*/

.post-content h2{

margin:70px 0 35px;

padding:18px 28px;

background:linear-gradient(90deg,#ffd9e8,#fff);

border-left:8px solid #ef8cab;

border-radius:12px;

font-size:34px;

color:#444;

box-shadow:0 8px 25px rgba(0,0,0,.06);

}
.post-content h3{

margin:50px 0 20px;

padding-left:18px;

border-left:5px solid #ef8cab;

font-size:26px;

color:#555;

}
.spot-info{

background:#fff8fb;

border:2px solid #ffd3e3;

border-radius:20px;

padding:25px;

margin:40px 0;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.spot-info h4{

margin-top:0;

color:#ef8cab;

font-size:24px;

}

.spot-info ul{

margin:15px 0 0;

padding-left:20px;

line-height:2;

}
.travel-tip{

background:#fffef5;

border-left:6px solid #ffc107;

padding:22px;

margin:35px 0;

border-radius:12px;

}
.gourmet-box{

background:#fff;

border-radius:20px;

padding:30px;

margin:40px 0;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.gourmet-box h4{

color:#ef8cab;

margin-bottom:20px;

}
.photo-point{

background:#eef8ff;

border-left:6px solid #4ea3ff;

padding:22px;

margin:35px 0;

border-radius:12px;

}