/* 
 * 澳根尼會館 (AUGANIC) - 首頁特定樣式
 */

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    animation: fadeIn 1s ease;
}

.hero h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Welcome Section */
.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.welcome-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.welcome-image img {
    transition: transform 0.8s ease;
    width: 100%;
}

.welcome-image:hover img {
    transform: scale(1.05);
}

.welcome-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.welcome-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Featured Rooms Section */
.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.room-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-info {
    padding: 20px;
}

.room-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.room-features span {
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.room-features i {
    margin-right: 5px;
    color: var(--primary-color);
}

.room-price p {
    font-size: 1rem;
    margin-bottom: 0;
}

.room-price span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.view-all-rooms {
    text-align: center;
}

/* Experience Preview Section */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.experience-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
}

.experience-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.experience-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    transform: translateY(0);
    transition: var(--transition);
}

.experience-item:hover .experience-content {
    transform: translateY(-10px);
}

.experience-content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.experience-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.view-all-experiences {
    text-align: center;
}

/* Contact Preview Section */
.contact-preview {
    background-color: var(--gray);
    padding: 80px 0;
}

.contact-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-preview {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info-preview h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 5px;
    margin-right: 15px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.map-preview {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    box-shadow: var(--shadow);
}

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

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
    }
    
    .contact-preview-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 576px) {
    .experiences-grid {
        grid-template-columns: 1fr;
    }
}