/* 新盛集团酒店单页样式 - 法式美学风格 */

/* 基础重置与变量定义 */
:root {
    --primary-white: #FFFFFF;
    --cream-white: #F9F7F2;
    --light-yellow: #FFF9E6;
    --light-gray: #F5F5F5;
    --dark-text: #2C2C2C;
    --gold-accent: #C6A769;
    --gold-light: #E8D9B5;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --section-spacing: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 排版元素 */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 工具类 */
.section-padding {
    padding: var(--section-spacing) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--dark-text);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-weight: 400;
}

/* 顶部导航 */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-accent);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.booking-button {
    background-color: var(--dark-text);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.booking-button:hover {
    background-color: var(--gold-accent);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-text);
    cursor: pointer;
}

/* 首屏横幅 */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.brand-name-en {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.brand-intro {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.brand-tagline {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
}

.call-button {
    background-color: var(--primary-white);
    color: var(--dark-text);
}

.call-button:hover {
    background-color: var(--gold-light);
    transform: translateY(-3px);
}

.register-button {
    background-color: var(--gold-accent);
    color: white;
}

.register-button:hover {
    background-color: var(--dark-text);
    transform: translateY(-3px);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.slider-prev, .slider-next {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-prev:hover, .slider-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* 欢迎介绍板块 */
.welcome-section {
    background-color: var(--cream-white);
    text-align: center;
}

.welcome-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.welcome-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.explore-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-accent);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 25px;
    border: 2px solid var(--gold-accent);
    border-radius: 30px;
    transition: var(--transition);
}

.explore-more-button:hover {
    background-color: var(--gold-accent);
    color: white;
}

/* 探索酒店板块 */
.explore-section {
    background-color: var(--primary-white);
}

.explore-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.explore-content {
    flex: 1;
}

.content-card {
    background-color: var(--light-yellow);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 1;
}

.explore-description {
    margin-bottom: 1.5rem;
    color: #555;
}

.explore-button {
    display: inline-block;
    background-color: var(--dark-text);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    margin-top: 1rem;
    transition: var(--transition);
}

.explore-button:hover {
    background-color: var(--gold-accent);
    transform: translateY(-3px);
}

.explore-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.explore-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.explore-image:hover img {
    transform: scale(1.05);
}

/* 品牌特色板块 */
.brand-section {
    background-color: var(--light-yellow);
}

.brand-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.brand-logo-small img {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 2rem;
    color: var(--dark-text);
    font-family: 'Inter', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background-color: var(--primary-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* 照片库板块 */
.gallery-section {
    background-color: var(--primary-white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-button {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-button:hover, .filter-button.active {
    background-color: var(--gold-accent);
    color: white;
    border-color: var(--gold-accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    background-color: var(--gold-accent);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.gallery-caption {
    font-size: 1rem;
    font-weight: 500;
}

.gallery-actions {
    text-align: center;
}

.view-more-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.view-more-button:hover {
    background-color: var(--gold-accent);
    color: white;
}

/* 奖项板块 */
.awards-section {
    background-color: var(--light-gray);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.award-card {
    background-color: var(--primary-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.award-card:hover {
    transform: translateY(-10px);
}

.award-image {
    height: 200px;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.award-card:hover .award-image img {
    transform: scale(1.1);
}

.award-content {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.award-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.award-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.award-year {
    color: var(--gold-accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

.award-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tags-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag-item {
    background-color: var(--light-yellow);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid var(--gold-light);
}

/* 酒店体验板块 */
.experience-section {
    background-color: var(--primary-white);
}

.experience-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.experience-content {
    flex: 1;
}

.experience-description p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.experience-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.experience-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-yellow);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.experience-feature i {
    color: var(--gold-accent);
}

.experience-images {
    flex: 1;
}

.image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    height: 500px;
}

.collage-item {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.collage-item.large {
    grid-column: 1 / span 2;
    grid-row: 1;
}

.collage-item.small {
    height: 200px;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-item:hover img {
    transform: scale(1.05);
}

/* 回忆与故事板块 */
.memories-section {
    background-color: var(--light-yellow);
}

.memories-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.memories-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
}

.guest-quotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.quote-card {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.quote-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.quote-author {
    color: var(--gold-accent);
    font-weight: 500;
}

.share-memory-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--dark-text);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.share-memory-button:hover {
    background-color: var(--gold-accent);
    transform: translateY(-3px);
}

/* 娱乐设施板块 */
.entertainment-section {
    background-color: var(--light-gray);
}

.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.entertainment-card {
    background-color: var(--primary-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.entertainment-card:hover {
    transform: translateY(-10px);
}

.entertainment-image {
    height: 200px;
    overflow: hidden;
}

.entertainment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.entertainment-card:hover .entertainment-image img {
    transform: scale(1.1);
}

.entertainment-content {
    padding: 2rem;
}

.entertainment-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.entertainment-description {
    color: #666;
    line-height: 1.7;
}

.entertainment-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #555;
    line-height: 1.8;
}

/* 页脚 */
.site-footer {
    background-color: var(--light-yellow);
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: var(--dark-text);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--gold-accent);
    color: white;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #666;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-subscribe {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.subscribe-form {
    display: flex;
    margin-bottom: 2rem;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    font-family: inherit;
}

.subscribe-form button {
    background-color: var(--dark-text);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-form button:hover {
    background-color: var(--gold-accent);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #666;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--gold-accent);
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.certifications {
    display: flex;
    gap: 2rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #555;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.cert-badge i {
    color: var(--gold-accent);
}

.footer-copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--gold-accent);
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-notes {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

/* 模态框 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--dark-text);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.submit-booking-button {
    background-color: var(--gold-accent);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-booking-button:hover {
    background-color: var(--dark-text);
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold-accent);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-text);
    transform: translateY(-5px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .features-grid,
    .awards-grid,
    .entertainment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-banner {
        min-height: 600px;
    }
    
    .brand-name-en {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .brand-intro {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .action-button {
        width: 80%;
        justify-content: center;
    }
    
    .explore-container,
    .experience-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .features-grid,
    .awards-grid,
    .entertainment-grid,
    .gallery-grid,
    .guest-quotes {
        grid-template-columns: 1fr;
    }
    
    .image-collage {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .certifications {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .brand-name-en {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .brand-intro {
        font-size: 1.3rem;
    }
    
    .content-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-content {
        width: 95%;
    }
    
    .gallery-item {
        height: 200px;
    }
}