/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2b2d42;
    --text-dark: #2b2d42;
    --text-light: #6c757d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 400;
}

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

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: opacity 0.3s;
    letter-spacing: 0.02em;
}

.nav-menu a:hover {
    opacity: 0.6;
}

.header-social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.header-social-icon:hover {
    opacity: 0.7;
}

.header-social-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ヒーローセクション */
.hero {
    position: relative;
    height: 100vh;
    background: url('apple-orchard.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    animation: heroBright 3s ease-in-out;
}

/* 最初の3秒間は明るく、その後暗くするアニメーション */
@keyframes heroBright {
    0% {
        filter: brightness(1);
    }
    70% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(0.7);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    animation: heroOverlay 3s ease-in-out forwards;
}

/* オーバーレイを3秒後に表示 */
@keyframes heroOverlay {
    0% {
        background: rgba(0, 0, 0, 0);
    }
    70% {
        background: rgba(0, 0, 0, 0);
    }
    100% {
        background: rgba(0, 0, 0, 0.4);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 40px;
    opacity: 0;
    animation: heroContentFadeIn 1s ease-in-out 3s forwards;
}

/* テキストを3秒後にフェードイン */
@keyframes heroContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero-brand {
    margin-top: 4rem;
}

.hero-brand-name {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s ease-in-out 3.5s forwards;
}

/* スクロールインジケーターを3.5秒後にフェードイン */
@keyframes scrollIndicatorFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #ffffff;
    writing-mode: vertical-rl;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: #ffffff;
    animation: scrollLine 2s infinite 4s;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
}

/* 最新のお知らせ */
section.latest-news {
    padding: 20px 0 !important;
    background: var(--bg-light) !important;
    border-bottom: 1px solid var(--border-color) !important;
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.latest-news-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

.latest-news-link {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: opacity 0.3s;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.latest-news-link:hover {
    opacity: 0.7;
    background: rgba(43, 45, 66, 0.05);
}

.latest-news-label {
    font-size: 0.75rem !important;
    font-weight: 500;
    color: var(--text-light) !important;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    background: var(--bg-white) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 12px;
    white-space: nowrap;
    display: inline-block;
}

.latest-news-date {
    font-size: 0.85rem !important;
    color: var(--text-light) !important;
    letter-spacing: 0.02em;
    min-width: 90px;
    display: inline-block;
}

.latest-news-title {
    font-size: 0.9rem !important;
    color: var(--text-dark) !important;
    letter-spacing: 0.02em;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

/* コンセプトセクション */
.concept {
    padding: 120px 0;
    background: var(--bg-white);
}

.concept-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concept-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.concept-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.concept-description {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 4rem;
    text-align: left;
}

.concept-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.concept-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.concept-link:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

/* 商品紹介セクション */
.products {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.product-description {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.season {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 丸福農園についてセクション */
.about {
    padding: 120px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text {
    max-width: 500px;
}

.about-description {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    width: 100%;
}

.about-image figure {
    margin: 0;
    width: 100%;
}

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

/* お知らせセクション */
.news {
    padding: 120px 0;
    background: var(--bg-white);
}

.news-list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.news-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.news-item:last-child {
    border-bottom: none;
}

.news-link {
    display: flex;
    gap: 3rem;
    align-items: baseline;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.news-link:hover {
    opacity: 0.6;
}

.news-date {
    font-size: 0.9rem;
    color: var(--text-light);
    min-width: 120px;
    letter-spacing: 0.02em;
}

.news-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

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

.btn-more {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.btn-more:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

/* お知らせ詳細ページ */
.news-detail {
    padding: 140px 0 120px;
    background: var(--bg-white);
    min-height: calc(100vh - 200px);
}

.news-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.news-back-link {
    display: inline-block;
    margin-bottom: 3rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
    letter-spacing: 0.02em;
}

.news-back-link:hover {
    opacity: 0.6;
}

.news-detail-article {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
}

.news-detail-date {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.news-detail-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.news-detail-body {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-dark);
}

.news-detail-body p {
    margin-bottom: 1.5rem;
}

.news-detail-body h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 2.5rem 0 1rem;
    letter-spacing: 0.02em;
}

.news-detail-body h3:first-of-type {
    margin-top: 0;
}

/* お知らせ詳細ページ内の商品写真 */
.news-product-image {
    margin: 3rem auto;
    width: 70%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.news-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* お知らせ詳細ページ内の価格表示 */
.news-price {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 1rem 0 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--text-dark);
}

/* お知らせ詳細ページ内の注文セクション */
.news-order-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.news-order-section h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.news-order-form {
    margin-top: 2rem;
    text-align: center;
}

.news-form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* お問い合わせセクション */
.contact {
    padding: 120px 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
}

.contact-form-text {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    border: 1px solid var(--text-dark);
}

.btn:hover {
    background: transparent;
    color: var(--text-dark);
}

.contact-form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-line {
    max-width: 600px;
    margin: 2rem auto 4rem;
    text-align: center;
}

.contact-line-link {
    display: inline-block;
    transition: opacity 0.3s;
}

.contact-line-link:hover {
    opacity: 0.8;
}

.contact-line-image {
    height: 48px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.contact-line-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.info-item h4 {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* フッター */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    letter-spacing: 0.02em;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 1.2rem 30px;
    }

    .about-content {
        gap: 4rem;
    }

    .products-grid {
        gap: 3rem;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 1rem 20px;
    }

    .hamburger {
        display: flex;
    }

    .header-social-icons {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .hero {
        height: 100vh;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-main-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        line-height: 1.5;
    }

    .latest-news-content {
        padding: 0 20px;
    }

    .latest-news-link {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .latest-news-date {
        min-width: auto;
    }

    .latest-news-title {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        flex-basis: 100%;
        font-size: 0.85rem;
    }

    .concept {
        padding: 80px 0;
    }

    .concept-links {
        flex-direction: column;
        align-items: center;
    }

    .concept-link {
        width: 100%;
        max-width: 300px;
    }

    .products {
        padding: 80px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-image {
        height: 300px;
    }

    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news {
        padding: 80px 0;
    }

    .news-item {
        padding: 1.5rem 0;
    }

    .news-link {
        flex-direction: column;
        gap: 0.5rem;
    }

    .news-date {
        min-width: auto;
    }

    .news-detail {
        padding: 100px 0 80px;
    }

    .news-detail-content {
        padding: 0 20px;
    }

    .news-detail-article {
        padding: 2rem 0;
    }

    .news-product-image {
        margin: 2rem auto;
        width: 85%;
        max-width: none;
    }

    .news-price {
        font-size: 1.1rem;
        padding: 0.8rem;
    }

    .news-order-section {
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .news-order-form {
        margin-top: 1.5rem;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-line-image {
        height: 40px;
        width: auto;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
    }

    .hero-main-title {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
        line-height: 1.4;
    }

    .latest-news {
        padding: 15px 0;
    }

    .latest-news-content {
        padding: 0 20px;
    }

    .latest-news-link {
        padding: 0.5rem 0.75rem;
    }

    .latest-news-label {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    .latest-news-date {
        font-size: 0.8rem;
    }

    .latest-news-title {
        font-size: 0.8rem;
    }

    .concept {
        padding: 60px 0;
    }

    .products {
        padding: 60px 0;
    }

    .about {
        padding: 60px 0;
    }

    .news {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .product-image {
        height: 250px;
    }

    .social-icons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .social-icon-image {
        width: 20px;
        height: 20px;
        max-width: 20px;
        max-height: 20px;
    }

    .contact-line-image {
        height: 32px;
        width: auto;
    }
}

/* ソーシャルアイコン */
.social-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-icon-image {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
    display: block;
}

.social-icon--line {
    color: #06C755;
}

.social-icon--line:hover {
    color: #05B048;
}

.social-icon--instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-icon--instagram:hover {
    background: linear-gradient(45deg, #e0852e 0%, #d55d35 25%, #c9223c 50%, #b91f5d 75%, #ab1567 100%);
}

.social-icon--instagram svg {
    fill: #ffffff;
}

/* タッチデバイス用の最適化 */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .concept-link,
    .btn-more {
        min-height: 48px;
        -webkit-tap-highlight-color: rgba(43, 45, 66, 0.2);
    }

    .btn:active,
    .concept-link:active,
    .btn-more:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .nav-menu a {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(43, 45, 66, 0.1);
    }

    .nav-menu a:active {
        background-color: rgba(43, 45, 66, 0.05);
    }

    .hamburger {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .hamburger:active {
        opacity: 0.7;
    }

    body {
        -webkit-overflow-scrolling: touch;
    }

    .form-group input,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px;
    }

    a {
        -webkit-tap-highlight-color: rgba(43, 45, 66, 0.2);
    }

    .social-icons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }

    .social-icon-image {
        width: 22px;
        height: 22px;
        max-width: 22px;
        max-height: 22px;
    }

    .contact-line-image {
        height: 36px;
        width: auto;
    }
}
