/* ==========================================
   売店 ひまわり - styles.css
   参考: house-cafe-dontmind 完コピ
   カラー: レトロ・ノスタルジック・クリーム色
   ========================================== */

:root {
    --primary-color:   #F4EBD0;   /* 褪せた古紙のようなレトロクリーム色 */
    --accent-color:    #9E4A28;   /* 色褪せたあずき色・赤茶色 */
    --accent-warm:     #C48B38;   /* くすんだマスタードゴールド */
    --text-color:      #2B1D12;   /* セピア調の深い焦げ茶 */
    --bg-light:        #FDFBF7;   /* ほんのりセピアがかった温かい白 */
    --bg-accent:       #E6D5B3;   /* くすんだレトロベージュ */
    --border-radius-lg: 40px;
    --border-radius-md: 20px;
    --transition:      all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Shippori Mincho', 'Noto Sans JP', serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
.font-hand {
    font-family: 'Itim', cursive;
}

.font-rounded {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

/* ==========================================
   Header
   ========================================== */
header {
    background-color: rgba(255, 245, 220, 0.92);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(158, 74, 40, 0.18);
}

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

.logo {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text-color);
    text-decoration: none;
}

.logo-sub-text {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

nav a:hover {
    color: var(--accent-color);
}

/* ハンバーガー */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background-color: var(--text-color);
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    padding: 140px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('img/ヒーローセクション　背景.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12; /* ほとんど目立たない程度に薄く透過 */
    z-index: -1;
}

.hero-content {
    margin-bottom: 70px; /* Pushed down to make space for the features */
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-color);
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #B56000; /* ひまわりをイメージした深みのあるオレンジゴールド */
    margin-top: 12px;
}

/* ヒーローセクションの特徴・カテゴリーテキスト */
.hero-features {
    margin-top: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #6B4A2A;
    line-height: 1.4;
}

.hero-features p {
    margin-bottom: 3px; /* Slightly narrower row spacing */
}

.hero-features p:last-child {
    margin-bottom: 0;
}

/* ポラロイド風散りばめ画像エリア */
.hero-image {
    width: 90%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-1deg);
}

.hero-bg-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* ポラロイド風フォトフレーム */
.bg-item {
    position: absolute;
    width: 280px;
    height: 200px;
    object-fit: cover;
    border: 10px solid var(--bg-light);
    border-bottom-width: 40px;
    box-shadow: 0 10px 24px rgba(58, 36, 16, 0.2);
    border-radius: 4px;
    opacity: 0.92;
    transition: transform 0.3s ease;
    animation: floating 8s infinite ease-in-out;
}

.bg-item:hover {
    transform: scale(1.06) rotate(0deg) !important;
    z-index: 20;
    opacity: 1;
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(var(--rot)); }
    50%       { transform: translateY(-14px) rotate(calc(var(--rot) + 2deg)); }
}

.item-1 {
    top: 8%;
    left: 8%;
    --rot: -6deg;
    transform: rotate(var(--rot));
    animation-delay: 0s;
}

.item-2 {
    top: 48%;
    left: 10%;
    --rot: 7deg;
    transform: rotate(var(--rot));
    animation-delay: 2s;
}

.item-3 {
    top: 10%;
    right: 10%;
    --rot: 5deg;
    transform: rotate(var(--rot));
    animation-delay: 1s;
}

.item-4 {
    top: 50%;
    right: 8%;
    --rot: -8deg;
    transform: rotate(var(--rot));
    animation-delay: 3s;
}

.item-5 {
    bottom: 12%;
    left: 36%;
    --rot: 2deg;
    transform: rotate(var(--rot));
    animation-delay: 4s;
    width: 330px;
    height: 235px;
}

/* 中央ロゴ / テキスト */
.hero-logo-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hero-logo-text {
    background-color: rgba(244, 235, 208, 0.9);
    padding: 18px 36px;
    border-radius: 12px;
    border: 2px solid rgba(158, 74, 40, 0.3);
    box-shadow: 0 8px 32px rgba(58, 36, 16, 0.2);
    text-align: center;
}

.hero-logo-main {
    display: block;
    font-family: 'Shippori Mincho', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: 0.1em;
}

.hero-logo-ruby {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ==========================================
   Gallery Section
   ========================================== */
#gallery {
    position: relative;
    z-index: 1;
}

#gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('img/ヒーローセクション　背景.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12; /* ヒーローセクションと同様に極めて薄く透過 */
    z-index: -1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 20px rgba(58, 36, 16, 0.07);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(158, 74, 40, 0.1);
}



.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 36px rgba(58, 36, 16, 0.12);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--border-radius-md) - 5px);
    margin-bottom: 15px;
}

/* ドーナツ プレースホルダー */
.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--border-radius-md) - 5px);
    margin-bottom: 15px;
    background-color: #B8AF9F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.placeholder-label {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.1rem;
    color: #63564A;
    letter-spacing: 0.08em;
}

.placeholder-soon {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    color: #9A9286;
    text-transform: uppercase;
}

.gallery-item p {
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.08em;
}

/* ==========================================
   About Section
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: -10px 10px 0 var(--accent-color);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-content h2 {
    text-align: left;
}

.about-content h3 {
    margin-top: 2rem;
    color: var(--accent-color);
    font-family: 'Shippori Mincho', serif;
}

.about-text {
    margin-bottom: 1.2rem;
    line-height: 1.75;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

/* 催事出店カード */
.event-card-retro {
    margin-top: 2rem;
    padding: 24px;
    background-color: var(--primary-color);
    border: 2px dashed rgba(158, 74, 40, 0.45);
    border-radius: var(--border-radius-md);
}

.event-card-retro h3 {
    margin-top: 0;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.event-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 8px 0 16px;
}

.price-lbl {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.85rem;
    color: #6B4A2A;
}

.price-val {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--accent-color);
}

.about-reserve {
    margin-top: 2rem;
    padding: 20px 22px;
    background-color: var(--bg-accent);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(184, 114, 42, 0.2);
}

.about-reserve h3 {
    margin-top: 0;
    font-size: 1rem;
    color: var(--text-color);
}

/* ==========================================
   Menu Section
   ========================================== */
.bg-accent {
    background-color: var(--bg-accent);
}

/* 曜日別メニューカード */
.menu-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.menu-card-retro {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    border: 1px solid rgba(158, 74, 40, 0.15);
    box-shadow: 0 6px 16px rgba(58, 36, 16, 0.05);
}

.menu-card-retro h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(158, 74, 40, 0.3);
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.menu-item-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.05rem;
    color: var(--text-color);
}

.menu-time-badge {
    font-size: 0.78rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #6B4A2A;
    background-color: var(--bg-accent);
    padding: 3px 12px;
    border-radius: 20px;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
}

.menu-table th {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.82rem;
    text-align: left;
    padding: 10px 14px;
    background-color: var(--bg-accent);
    color: var(--text-color);
    border-bottom: 2px solid rgba(158, 74, 40, 0.3);
    letter-spacing: 0.08em;
}

.menu-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(158, 74, 40, 0.1);
    color: #5C3A1E;
    vertical-align: middle;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.93rem;
}

.menu-table tr:last-child td {
    border-bottom: none;
}

.day-tag {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-light);
    padding: 3px 12px;
    border-radius: 6px;
    font-family: 'Shippori Mincho', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/* Instagramバナー */
.insta-banner {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    font-family: 'Noto Sans JP', sans-serif;
}

.insta-banner:hover {
    transform: translateY(-5px);
}

/* ==========================================
   Access Section
   ========================================== */
.access-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(58, 36, 16, 0.08);
    height: 100%;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

.access-info h3 {
    font-size: 1.05rem;
    font-family: 'Shippori Mincho', serif;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
    margin-top: 1.5rem;
    letter-spacing: 0.06em;
}

.social-links {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: block;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.google-maps-btn {
    background-color: #fff;
    border: 2px solid #4285F4;
    color: #4285F4;
}

.google-maps-btn:hover {
    background-color: #4285F4;
    color: #fff;
}

.instagram-btn {
    background-color: #fff;
    border: 2px solid #E1306C;
    color: #E1306C;
}

.instagram-btn:hover {
    background-color: #E1306C;
    color: #fff;
}

/* 営業時間カード */
.business-hours-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hours-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 24px;
    border: 2px solid transparent;
    box-shadow: 0 8px 16px rgba(58, 36, 16, 0.05);
    position: relative;
    transition: var(--transition);
}

.hours-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(58, 36, 16, 0.1);
}

.hours-card.active-hours {
    border-color: var(--accent-color);
    background-color: rgba(244, 235, 208, 0.3);
}

.badge-current {
    position: absolute;
    top: -12px;
    left: 24px;
    background-color: var(--accent-color);
    color: white;
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-family: 'Noto Sans JP', sans-serif;
    box-shadow: 0 4px 8px rgba(158, 74, 40, 0.3);
    letter-spacing: 0.06em;
}

.hours-card h3 {
    font-size: 1.2rem;
    font-family: 'Shippori Mincho', serif;
    color: var(--text-color);
    border-left: none !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 4px;
    font-weight: 700;
}

.hours-card .period {
    font-size: 0.82rem;
    color: #8C7060;
    margin-bottom: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

.hours-group {
    margin-bottom: 16px;
}

.hours-group:last-child {
    margin-bottom: 0;
}

.hours-group .days {
    display: inline-block;
    font-weight: bold;
    font-size: 0.92rem;
    color: var(--text-color);
    background-color: var(--primary-color);
    padding: 2px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.04em;
}

.hours-card ul {
    list-style: none;
    padding-left: 8px;
}

.hours-card li {
    font-size: 0.93rem;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}

.hours-card li strong {
    color: var(--text-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.hours-row {
    display: flex;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.04em;
}

.hours-time-label {
    width: 90px;
    color: var(--accent-color);
}

.hours-time-value {
    color: var(--text-color);
}

/* 定休日カード */
.holiday-card {
    background-color: #F5E2E0;
    border-radius: var(--border-radius-md);
    padding: 16px 24px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #C47A72;
}

.holiday-card h3 {
    font-size: 1.05rem;
    font-family: 'Shippori Mincho', serif;
    color: #8A3D36;
    border-left: none !important;
    padding-left: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 4px;
}

.holiday-card p {
    font-weight: bold;
    color: #8A3D36;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ==========================================
   Footer
   ========================================== */
footer {
    background-color: var(--text-color);
    color: var(--primary-color);
    position: relative;
    padding-bottom: 40px;
}

.footer-wave {
    position: absolute;
    top: -50px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave .shape-fill {
    fill: var(--text-color);
}

.footer-content {
    padding-top: 40px;
}

.footer-logo-text {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
}

.footer-logo-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: rgba(244, 235, 208, 0.55);
    text-transform: uppercase;
}

.footer-catch {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #E2A03F; /* 変更: ひまわりをイメージした温かみのあるゴールド */
    opacity: 0.95;
    margin-bottom: 12px;
}

.footer-info {
    font-size: 0.88rem;
    opacity: 0.8;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.04em;
}

.footer-station {
    color: #E68A65; /* 追加: 坂戸駅前南口を目立たせるレトロな温かみのあるテラコッタ色 */
}

.copyright {
    margin-top: 30px;
    font-size: 0.78rem;
    opacity: 0.5;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ==========================================
   Sections General
   ========================================== */
.section {
    padding: 100px 0;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 表示制御ユーティリティ */
.sp-only {
    display: none;
}
.pc-only {
    display: inline;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-grid,
    .access-grid {
        grid-template-columns: 1fr;
    }

    .access-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-bottom: 50px;
    }
    .hero-features {
        margin-top: 12px;
        line-height: 1.4;
    }

    header {
        background-color: transparent;
        border-bottom: 1px solid transparent;
        backdrop-filter: none;
        transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    }

    header.scrolled {
        background-color: rgba(244, 235, 208, 0.92);
        border-bottom: 1px solid rgba(158, 74, 40, 0.18);
        backdrop-filter: blur(10px);
    }

    .sp-only {
        display: block;
    }
    .pc-only {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary-color);
        display: flex !important;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(58, 36, 16, 0.12);
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    nav a {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        height: 350px;
        width: 95%;
    }

    .hero-logo-main {
        font-size: 1.6rem;
    }

    .bg-item {
        width: 160px;
        height: 120px;
        border-width: 5px;
        border-bottom-width: 25px;
    }

    .item-1 { top: 8%;  left: 3%; }
    .item-2 { top: 55%; left: 3%; }
    .item-3 { top: 8%;  right: 3%; }
    .item-4 { top: 55%; right: 3%; }
    .item-5 { top: 31%; left: 24%; width: 180px; height: 140px; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }



    .insta-banner {
        padding: 15px 25px;
        font-size: 1rem;
        gap: 10px;
        white-space: nowrap;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .footer-wave {
        top: -30px;
    }

    .footer-wave svg {
        height: 30px;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        gap: 10px;
    }
}
