/* ===========================
   Green Fee Page Hero Section
   =========================== */

.greenfee-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #231F20 0%, #3A3638 100%);
    overflow: hidden;
}

.greenfee-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-golf-course.jpg?v=2');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(35, 31, 32, 0.7), rgba(35, 31, 32, 0.9));
    z-index: 2;
}

.greenfee-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--champagne-gold);
    color: var(--forest-green);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.greenfee-hero .hero-title {
    font-family: var(--font-serif-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--white);
}

.greenfee-hero .hero-subtitle {
    font-family: var(--font-serif-heading);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--champagne-gold);
    letter-spacing: 1px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--champagne-gold);
    color: var(--champagne-gold);
    transform: translateY(-2px);
}

.back-link i {
    font-size: 1.2rem;
}

/* ===========================
   Green Fee Content Section
   =========================== */

.greenfee-content {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
}

/* Period Section */
.period-section {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.period-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 36px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--medium-gray);
}

.period-badge i {
    font-size: 2rem;
    color: var(--champagne-gold);
}

.period-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.period-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.period-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest-green);
}

/* Green Fee Table Wrapper */
.greenfee-table-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    padding: 20px;
}

.scroll-hint {
    display: none;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .scroll-hint {
        display: block;
    }
}

.period-title {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.period-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--forest-green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-right: 12px;
}

.table-responsive {
    overflow-x: auto;
    padding: 0;
}

/* Green Fee Price Table */
.greenfee-price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 700px;
}

.greenfee-price-table thead {
    background: #E8E8E8;
}

.greenfee-price-table th {
    padding: 14px 12px;
    text-align: center;
    font-weight: 700;
    color: #333333;
    font-size: 0.95rem;
    border: 1px solid #D0D0D0;
    background: #E8E8E8;
}

.greenfee-price-table tbody tr {
    background: var(--white);
}

.greenfee-price-table td {
    padding: 14px 12px;
    text-align: center;
    border: 1px solid #D0D0D0;
    font-size: 0.9rem;
    color: #333333;
}

.th-row-header {
    background: #F0F0F0;
    font-weight: 700;
    color: #333333;
    font-size: 1rem;
    vertical-align: middle;
}

.time-text {
    background: #FAFAFA;
    font-weight: 500;
    color: #555555;
    white-space: nowrap;
}

.price-text {
    font-weight: 700;
    color: #333333;
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.info-card.highlight-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--medium-gray);
    transition: var(--transition-smooth);
}

.info-card.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--champagne-gold);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--champagne-gold), var(--gold-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 12px;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.card-description strong {
    color: var(--dark-gray);
}

/* Check Point Section */
.check-point-section {
    background: linear-gradient(135deg, #FAFAFA, #F5F5F5);
    border: 2px solid #E0E0E0;
    border-left: 4px solid var(--champagne-gold);
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.check-point-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E0E0E0;
}

.check-point-header i {
    color: var(--champagne-gold);
    font-size: 1.5rem;
}

.check-point-header span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-green);
}

.check-point-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.check-point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid #E8E8E8;
}

.check-point-item:hover {
    background: #FAFAFA;
    transform: translateX(4px);
    border-color: var(--champagne-gold);
}

.check-point-item i {
    color: var(--champagne-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-point-item span {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #FAFAFA, #F5F5F5);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.cta-title {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 12px;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--champagne-gold), var(--gold-hover));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.cta-button i {
    font-size: 1.4rem;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .greenfee-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-badge {
        padding: 6px 18px;
        font-size: 0.75rem;
        margin-bottom: 16px;
    }
    
    .back-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .period-badge {
        flex-direction: column;
        gap: 8px;
        padding: 16px 24px;
    }
    
    .period-badge i {
        font-size: 1.5rem;
    }
    
    .period-date {
        font-size: 1rem;
        text-align: center;
    }
    
    .greenfee-table-wrapper {
        margin-bottom: 40px;
        padding: 16px;
    }
    
    .scroll-hint {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .period-title {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .period-badge {
        padding: 4px 12px;
        font-size: 0.75rem;
        margin-right: 8px;
    }
    
    .greenfee-price-table {
        min-width: 600px;
    }
    
    .greenfee-price-table th,
    .greenfee-price-table td {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .th-row-header {
        font-size: 0.85rem;
    }
    
    .time-text {
        font-size: 0.75rem;
    }
    
    .price-text {
        font-size: 0.8rem;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.6rem;
    }
    
    .card-title {
        font-size: 1.15rem;
    }
    
    .check-point-section {
        padding: 24px 20px;
    }
    
    .check-point-header {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .check-point-header i {
        font-size: 1.2rem;
    }
    
    .check-point-header span {
        font-size: 1.1rem;
    }
    
    .check-point-item {
        padding: 10px 12px;
    }
    
    .check-point-item span {
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .cta-button {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .greenfee-hero {
        min-height: 350px;
    }
    
    .greenfee-table-wrapper {
        padding: 12px;
    }
    
    .scroll-hint {
        font-size: 0.75rem;
    }
    
    .period-title {
        font-size: 0.85rem;
    }
    
    .period-badge {
        padding: 3px 10px;
        font-size: 0.7rem;
    }
    
    .greenfee-price-table {
        min-width: 550px;
    }
    
    .greenfee-price-table th,
    .greenfee-price-table td {
        padding: 8px 4px;
        font-size: 0.7rem;
    }
    
    .th-row-header {
        font-size: 0.75rem;
    }
    
    .time-text {
        font-size: 0.65rem;
    }
    
    .price-text {
        font-size: 0.7rem;
    }
    
    .check-point-section {
        padding: 20px 16px;
        border-left-width: 4px;
    }
    
    .check-point-item span {
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}
