/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-zen-old-mincho);
    background-color: var(--background-cream);
    color: var(--text-color);
    line-height: 1.8;
}

/* Base Layout */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;	
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-zen-old-mincho);
    line-height: 1.4;
    margin: 0;
}

p {
    /*margin: 0;
    line-height: 1.8;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Common Colors - moved to /styles/globals.css */

/* Common Utilities */
.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

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

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

/* Container Styles */
.container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    bottom: 20.7px;
    right: 23px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.back-to-top img {
    width: 100%;
    height: 100%;
}

/* Common Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Common Transitions */
.transition {
    transition: all 0.3s ease;
}

/* Mobile First Responsive Breakpoints */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .gap-30 {
        gap: 20px;
    }
    
    .gap-40 {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}
.wpcf7-spinner{
	display: none!important;
	}