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

body {
    font-family: 'Sawarabi Gothic', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    font-family: 'Noto Sans JP', sans-serif;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}

.nav-menu a:hover {
    color: #3498db;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with 360 Panorama */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

#panorama-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#panorama-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.hero-content {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
    font-weight: 500;
}

.cta-button:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

.panorama-controls {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.4s;
}

.control-hint {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* 360 Gallery Section */
.gallery360 {
    padding: 100px 0;
    background: #0d0d0d;
    color: white;
}

.gallery360 h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 300;
}

.gallery360-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #bbb;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.panorama-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.panorama-item {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.panorama-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.panorama-viewer {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.panorama-viewer canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.panorama-info {
    padding: 1.5rem;
}

.panorama-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.panorama-info p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.panorama-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.panorama-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.panorama-nav-btn:hover,
.panorama-nav-btn.active {
    background: #2980b9;
    transform: scale(1.1);
}

/* Street View Section */
.streetview-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.streetview-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 300;
}

.streetview-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #bbb;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.streetview-embed {
    display: flex;
    justify-content: center;
    align-items: center;
}

.streetview-embed iframe {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.streetview-embed iframe:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Regular Gallery Section */
.gallery {
    padding: 100px 0;
    background: #2a2a2a;
    color: white;
}


.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 300;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid #ddd;
    color: #666;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
    width: 100%;
    background: #f0f0f0;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.panorama-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Gallery Page Styles */
.gallery-page {
    padding-top: 120px;
    min-height: 100vh;
    background: #0d0d0d;
    color: white;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
}

.page-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.nav-menu .active {
    color: #3498db !important;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #3a3a3a;
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.skills {
    margin-top: 2rem;
}

.skills h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skills ul {
    list-style: none;
}

.skills li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.skills li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ddd;
    font-weight: bold;
}

.awards {
    margin-top: 2rem;
}

.awards h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.awards ul {
    list-style: none;
}

.awards li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.awards li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
    opacity: 1;
    visibility: visible;
    background: #f0f0f0;
    max-width: 350px;
}

.about-image img.second-image {
    margin-top: 20px;
}

/* Social Links Section */
.social-links {
    padding: 80px 0;
    background: #5a5a5a;
    color: white;
}

.social-links h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 300;
}

.social-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.social-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: white;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.social-icon .text-icon {
    font-size: 28px;
    font-weight: bold;
    color: currentColor;
}

.social-icon .icon-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}

.social-item:hover .social-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.social-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Platform-specific colors on hover */
.social-item[data-platform="twitter"]:hover {
    background: linear-gradient(135deg, rgba(29, 161, 242, 0.3), rgba(29, 161, 242, 0.2));
}

.social-item[data-platform="instagram"]:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.3), rgba(255, 220, 128, 0.2));
}

.social-item[data-platform="threads"]:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(102, 102, 102, 0.2));
}

.social-item[data-platform="spotify"]:hover {
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.3), rgba(30, 215, 96, 0.2));
}

.social-item[data-platform="youtube"]:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 0, 0, 0.2));
}

.social-item[data-platform="standFm"]:hover {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.3), rgba(255, 107, 0, 0.2));
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 300;
}

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

.contact-message {
    margin-bottom: 3rem;
}

.contact-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 400;
}

.contact-message p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-sns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-sns-item {
    background: white;
    border-radius: 15px;
    padding: 2.2rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.contact-sns-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: inherit;
    text-decoration: none;
}

.contact-sns-item:first-child:hover {
    border-color: #1da1f2;
}

.contact-sns-item:last-child:hover {
    border-color: #e1306c;
}

.sns-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-sns-item:first-child:hover .sns-icon {
    background: #1da1f2;
    color: white;
}

.contact-sns-item:last-child:hover .sns-icon {
    background: linear-gradient(45deg, #e1306c, #fd1d1d, #f77737, #fcaf45);
    color: white;
}

.sns-icon svg {
    fill: currentColor;
    transition: all 0.3s ease;
}

.sns-text {
    text-align: left;
}

.sns-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.sns-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.contact-note {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #3498db;
}

.contact-note p {
    margin: 0;
    color: #2c3e50;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-note p:first-child {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-note p:last-child {
    color: #555;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.footer-info p {
    color: #bdc3c7;
    font-family: 'Noto Sans JP', sans-serif;
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.close:hover {
    color: #3498db;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1.1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #3498db;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* 360 Panorama specific styles */
.panorama-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background: #000;
}

.panorama-fullscreen canvas {
    width: 100vw !important;
    height: 100vh !important;
}

.fullscreen-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2001;
}

.fullscreen-btn,
.close-fullscreen-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.fullscreen-btn:hover,
.close-fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Mobile optimizations for panorama */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-content {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 200px;
        text-align: center;
    }

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

    .panorama-viewer {
        height: 200px;
    }
    
    .streetview-embed iframe {
        width: 100%;
        max-width: 500px;
        height: 350px;
    }
    
    .streetview-section {
        padding: 60px 0;
    }
    
    .streetview-section h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-sns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-sns-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .sns-text {
        text-align: center;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        padding: 60px 0;
    }
    
    .social-links h2 {
        font-size: 2rem;
    }

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

    .gallery-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

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

    .nav-container {
        padding: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .panorama-viewer {
        height: 180px;
    }

    .gallery360 {
        padding: 60px 0;
    }

    .gallery360 h2 {
        font-size: 2rem;
    }
    
    .streetview-embed iframe {
        width: 95%;
        max-width: 400px;
        height: 300px;
    }
    
    .social-item {
        padding: 1.2rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .social-info h3 {
        font-size: 1.1rem;
    }
    
    .social-info p {
        font-size: 0.9rem;
    }
    
    .contact-sns-item {
        padding: 1.2rem;
    }
    
    .sns-icon {
        width: 50px;
        height: 50px;
    }
    
    .sns-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .sns-text h4 {
        font-size: 1.1rem;
    }
    
    .sns-text p {
        font-size: 0.9rem;
    }

    .gallery,
    .about,
    .contact {
        padding: 60px 0;
    }

    .gallery h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-message h3 {
        font-size: 1.5rem;
    }
    
    .contact-message p {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

