/*
Theme Name: Tailor Six
Theme URI: https://tailorsix.com/
Author: Tailor Six
Author URI: https://tailorsix.com/
Description: A modern eyebrow salon theme for Tailor Six - 北海道初のbrowbar式アイブロウサロン
Version: 1.0.0
License: GPL v2 or later
Text Domain: tailorsix
Tags: custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.slide-up {
    opacity: 0;
    animation: slideInUp 1s ease-out forwards;
}

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

body {
    font-family: 'Noto Serif JP', serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
}

/* Common Elements */
section {
    position: relative;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Serif JP', serif;
}

button:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.service button:hover {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: pulse 1s ease-in-out infinite;
}

/* Header Navigation */
.site-header {
    display: none;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.main-navigation a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.main-navigation a:hover {
    opacity: 0.6;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('/wp-content/themes/tailorsix-theme/img/tshirt.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    font-size: clamp(4rem, 15vw, 12rem);
    color: black;
    line-height: 1.3;
    font-weight: 400;
}

.hero-text p {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.hero-text.visible p {
    opacity: 1;
    transform: translateX(0);
}

.hero-text.visible p:nth-child(1) {
    transition-delay: 0.1s;
}

.hero-text.visible p:nth-child(2) {
    transition-delay: 0.3s;
}

.hero-text.visible p:nth-child(3) {
    transition-delay: 0.5s;
}

.hero-text p {
    margin: 0;
}

.logo-text {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    font-size: clamp(2rem, 12vw, 9rem);
    font-weight: bold;
    color: black;
    letter-spacing: 0.2em;
    opacity: 0;
    transition: all 0.8s ease-out;
}

.logo-text.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Anniversary Section */
.anniversary {
    background-color: #3a3534;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.anniversary.visible {
    opacity: 1;
    transform: translateY(0);
}

.anniversary h2 {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    margin-bottom: 3rem;
    font-family: serif;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.4;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.anniversary.visible h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.service {
    max-width: clamp(500px, 90vw, 800px);
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
    background: rgba(255, 255, 255, 0.05);
    border-radius: clamp(8px, 1vw, 12px);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}

.service.visible {
    opacity: 1;
    transform: translateY(0);
}

.service:nth-child(1) {
    transition-delay: 0.1s;
}

.service:nth-child(2) {
    transition-delay: 0.2s;
}

.service:nth-child(3) {
    transition-delay: 0.3s;
}

.service:last-child {
    margin-bottom: 0;
}

.service:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-top-color: rgba(255, 255, 255, 0.5);
}

.service .title {
    font-size: clamp(1.2rem, 3.5vw, 2.5rem);
    margin-bottom: clamp(0.3rem, 1vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.service .price {
    font-size: clamp(1.4rem, 4.5vw, 3rem);
    margin-top: clamp(0.2rem, 0.5vw, 0.5rem);
    font-weight: 600;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.price-arrow {
    font-size: 0.6em;
    vertical-align: middle;
}

.service button {
    background: linear-gradient(135deg, #fff, #f5f5f5);
    color: #3a3534;
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    min-width: clamp(80px, 15vw, 120px);
    font-weight: 600;
    border-radius: clamp(20px, 2vw, 30px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.service button:hover::before {
    left: 100%;
}

/* Reviews Section */
.reviews {
    background: 
        linear-gradient(135deg, rgba(0,0,0,0.95), rgba(20,20,20,0.98), rgba(0,0,0,0.95)),
        radial-gradient(ellipse at 25% 20%, rgba(212,175,55,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 80%, rgba(212,175,55,0.08) 0%, transparent 60%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(212,175,55,0.03) 2px,
            rgba(212,175,55,0.03) 4px
        );
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.reviews.visible {
    opacity: 1;
    transform: translateY(0);
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 3vw, 3rem);
    text-align: center;
    position: relative;
    z-index: 2;
}

.reviews h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}


.reviews-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: clamp(4rem, 8vw, 6rem);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.05em;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-subtitle::before,
.reviews-subtitle::after {
    content: '◆';
    color: rgba(212, 175, 55, 0.6);
    font-size: 0.8rem;
    margin: 0 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: stretch;
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(4rem, 8vw, 6rem);
    position: relative;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .review-card-pc {
        display: none;
    }
}

@media (min-width: 1025px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 1800px;
        margin: 0 auto clamp(4rem, 8vw, 6rem) auto;
    }
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    max-width: 280px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.review-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.review-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.review-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars {
    margin-bottom: 1rem;
}

.star {
    color: #d4af37;
    font-size: 1rem;
    margin-right: 0.1rem;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-style: italic;
    flex-grow: 1;
    font-weight: 300;
    text-align: left;
}


.review-author {
    margin-bottom: 0.8rem;
}

.review-author {
    margin-bottom: 0.8rem;
}

.author-name {
    font-weight: 500;
    color: #d4af37;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.2rem;
}

.author-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.review-service {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    display: inline-block;
    font-weight: 400;
    text-align: center;
}

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

.more-reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fff, #f5f5f5);
    color: #3a3534;
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
    border-radius: clamp(20px, 2vw, 30px);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    min-width: clamp(80px, 15vw, 120px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
    border: none;
}

.more-reviews-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.more-reviews-btn:hover {
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: pulse 1s ease-in-out infinite;
}

.more-reviews-btn:hover::before {
    left: 100%;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 20px 60px rgba(212, 175, 55, 0.7), inset 0 2px 0 rgba(255, 255, 255, 0.4); }
}

@keyframes btn-pulse {
    0%, 100% { transform: translateY(-5px) scale(1.08); }
    50% { transform: translateY(-6px) scale(1.1); }
}

.more-reviews-btn i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .reviews {
        min-height: auto;
    }
    
    .reviews-container {
        padding: clamp(3rem, 6vw, 4rem) clamp(1rem, 3vw, 2rem);
    }
    
    .reviews-grid {
        gap: 1.2rem;
    }
    
    .review-card {
        max-width: 260px;
        padding: 1rem;
        min-height: 160px;
    }
}

/* Photo Section */
.photo-section {
    position: relative;
    overflow: hidden;
    background-image: url('/wp-content/themes/tailorsix-theme/img/top2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    background-attachment: fixed;
    transform: translateZ(0);
}

.photo-caption {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: white;
    text-align: right;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.photo-caption.visible {
    opacity: 1;
    transform: translateX(0);
}

.photo-caption p {
    font-size: clamp(0.8rem, 2.5vw, 1.6rem);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.photo-caption button {
    margin-top: 1rem;
    background: linear-gradient(135deg, white, #f5f5f5);
    color: #3a3534;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.photo-caption button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.photo-caption button:hover::after {
    width: 300px;
    height: 300px;
}

.photo-caption button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Interior Section */
.interior {
    position: relative;
    color: white;
    min-height: 90vh;
    background-image: url('/wp-content/themes/tailorsix-theme/img/top3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: translateZ(0);
}

.interior-left {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: clamp(0.7rem, 2vw, 1.4rem);
    line-height: 1.8;
    text-shadow: 
        0 2px 8px rgba(0,0,0,0.8),
        0 0 20px rgba(0,0,0,0.6);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.interior-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.interior-left p {
    margin-bottom: 0.5rem;
}

.interior-right {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: clamp(0.65rem, 1.8vw, 1.2rem);
    text-align: right;
    text-shadow: 
        0 2px 8px rgba(0,0,0,0.8),
        0 0 20px rgba(0,0,0,0.6);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.interior-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.interior-right p {
    margin-bottom: 0.3rem;
}

.interior-right .social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.interior-right .social a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.interior-right .social a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2c2926, #3a3534, #1a1a1a);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.footer-navigation {
    order: 1;
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    gap: clamp(1.5rem, 4vw, 3rem);
    justify-content: center;
    margin: 0;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.5rem 0;
}

.footer-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.footer-navigation a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-navigation a:hover::after {
    width: 100%;
}

.site-info {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.footer-info {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    opacity: 0.7;
    line-height: 1.6;
}

.footer-info p {
    margin: 0.5rem 0;
}

.powered-by {
    font-size: 0.75rem;
    opacity: 0.5;
}

.powered-by a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-social {
    order: 2;
}

.social-links {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(3rem, 6vw, 4rem);
    height: clamp(3rem, 6vw, 4rem);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: transparent;
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: transparent;
}

.social-link.line:hover {
    background: #00c300;
    border-color: transparent;
}

/* Mobile Fixed Menu */
.mobile-fixed-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-fixed-menu {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000;
        box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.5);
        z-index: 9999;
        padding: 0;
    }
    
    .fixed-menu-item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.7rem 0;
        color: white;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        font-size: 0.85rem;
        font-weight: 400;
        letter-spacing: 0.02em;
        background: #000;
    }
    
    .fixed-menu-item i {
        font-size: 1rem;
    }
    
    .fixed-menu-item span {
        display: block;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    
    .fixed-menu-item::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 1px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .fixed-menu-item:last-child::after {
        display: none;
    }
    
    .phone-button {
        background: #000;
    }
    
    .booking-button {
        background: #000;
        position: relative;
        overflow: hidden;
    }
    
    .booking-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .booking-button:hover::before {
        left: 100%;
    }
    
    .fixed-menu-item:active {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Adjust body padding to account for fixed menu */
    body {
        padding-bottom: 50px;
    }
}

/* Blog/Archive Pages */
.posts-container {
    max-width: 800px;
    margin: 5rem auto 3rem;
    padding: 0 1rem;
}

article {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

article:last-child {
    border-bottom: none;
}

article h2 {
    margin-bottom: 0.5rem;
}

article h2 a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

article h2 a:hover {
    opacity: 0.7;
}

.post-meta {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pagination {
    text-align: center;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.pagination a:hover {
    background: #3a3534;
    color: white;
}

.pagination .current {
    background: #3a3534;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-text {
        font-size: 3.2rem;
        top: 50%;
        left: 1rem;
        transform: translateY(-50%);
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .anniversary {
        padding: 3rem 1rem;
    }
    
    .service {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .photo-caption {
        bottom: 1rem;
        right: 1rem;
        left: auto;
        text-align: right;
    }
    
    .photo-caption p {
        font-size: 1rem;
    }
    
    .interior-left {
        position: absolute;
        top: 1rem;
        left: 1rem;
        padding: 0;
        text-align: left;
        text-shadow: 
            0 1px 4px rgba(0,0,0,0.9),
            0 0 12px rgba(0,0,0,0.7);
        background: none;
        font-size: 0.8rem;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.01em;
    }
    
    .interior-right {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        padding: 0;
        text-align: right;
        text-shadow: 
            0 1px 4px rgba(0,0,0,0.9),
            0 0 12px rgba(0,0,0,0.7);
        background: none;
        font-size: 0.8rem;
        font-weight: 600;
        color: #fff;
        letter-spacing: 0.01em;
    }
    
    .footer-content {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .footer-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 2.8rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .anniversary h2 {
        font-size: 1.3rem;
    }
    
    .service .title {
        font-size: 1.3rem;
    }
    
    .service .price {
        font-size: 1.6rem;
    }
}