/* Academy Page Styles */

/* Hero Section */
.academy-hero {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 150px 0 100px;
    text-align: center;
    color: white;
    margin-top: 140px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    display: inline-block;  /* none에서 inline-block으로 변경 */
    max-width: 100%;
}

/* 로고 이미지가 없을 경우를 대비한 스타일 */
.hero-logo[src*="logo.png"] {
    max-width: 100%;
    object-fit: contain;
}

.academy-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* General Section Styles */
.academy-section {
    padding: 80px 0;
}

.academy-section:nth-child(even) {
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: bold;
}

/* About Section */
.about-section {
    background: white;
}

.section-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.est-text {
    font-size: 1.5rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 2rem;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    line-height: 1.8;
}

.location-item strong {
    color: #27ae60;
    display: block;
    margin-bottom: 0.5rem;
}

.team-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Coaches Section */
.coaches-section {
    background: #f8f9fa;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coach-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.2);
}

.coach-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid #27ae60;
}

.coach-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin: 0 0 0.5rem 0;
}

/* Head Coach 타이틀 스타일 추가 */
.coach-title {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Packages Section */
.packages-section {
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.package-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #27ae60;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.package-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.package-card p {
    color: #666;
    font-size: 1.1rem;
}

.section-image-right {
    max-width: 600px;
    margin: 3rem auto 0;
}

.section-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Clinics Section */
.clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.clinic-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.clinic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.15);
}

.clinic-icon {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    text-align: center;
}

.clinic-card h3 {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    text-align: center;
}

.clinic-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clinic-details li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.clinic-details li:last-child {
    border-bottom: none;
}

/* Camps Section */
.camps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.camp-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.camp-card:hover {
    transform: translateY(-8px);
}

.camp-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.camp-content {
    padding: 2rem;
}

.camp-card h3 {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.camp-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.camp-details li {
    padding: 0.8rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.camp-details li:last-child {
    border-bottom: none;
}

/* Leagues Section */
.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.league-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.league-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.league-content {
    padding: 2rem;
}

.league-card h3 {
    font-size: 1.8rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.league-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.league-details li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.league-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

/* Tournaments Section */
.tournament-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.tournament-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tournament-photo:hover {
    transform: scale(1.05);
}

.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tournament-category {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tournament-category h3 {
    font-size: 1.8rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #27ae60;
}

.tournament-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tournament-list li {
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    color: #555;
    transition: all 0.3s ease;
}

.tournament-list li:hover {
    background: #e8f5e9;
    padding-left: 1.5rem;
}

/* USGTF Section */
.usgtf-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.usgtf-logo {
    text-align: center;
}

.usgtf-logo-img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.usgtf-programs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.usgtf-program {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #27ae60;
}

.usgtf-program h4 {
    font-size: 1.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.usgtf-program ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usgtf-program li {
    padding: 0.5rem 0;
    color: #555;
}

.usgtf-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* VIP Membership Section */
.vip-section {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.vip-section .section-title {
    color: white;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.vip-pricing {
    text-align: center;
    padding: 3rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.vip-pricing h3 {
    font-size: 3rem;
    margin: 1rem 0;
}

.vip-pricing span {
    font-size: 1.2rem;
    font-weight: normal;
}

.or-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.vip-benefits {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    color: #333;
}

.vip-benefits h4 {
    font-size: 1.8rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.vip-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-benefits li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.vip-benefits li:last-child {
    border-bottom: none;
}

.vip-benefits li i {
    position: absolute;
    left: 0;
    top: 1.2rem;
    color: #27ae60;
}

.vip-app-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Junior Golf Club Section */
.golf-club-section {
    background: #f8f9fa;
}

.golf-club-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.club-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.club-details li {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.club-details li i {
    color: #27ae60;
    font-size: 1.5rem;
    min-width: 30px;
}

.club-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: sticky;
    top: 100px;
}

/* NYCC Section */
.nycc-section {
    background: white;
}

.nycc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.nycc-benefits {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
}

.nycc-benefits h3 {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.nycc-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.nycc-benefits li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.nycc-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.nycc-pricing {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
}

.nycc-pricing h4 {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.inquiry-text {
    color: #666;
    font-style: italic;
}

.nycc-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Under Par Section */
.underpar-section {
    background: #f8f9fa;
}

.underpar-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.underpar-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.underpar-benefits li {
    padding: 1rem 1.5rem;
    margin: 0.8rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid #27ae60;
}

.underpar-pricing {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.underpar-pricing h3 {
    font-size: 2.5rem;
    color: #27ae60;
    margin: 1rem 0;
}

.underpar-pricing span {
    font-size: 1.2rem;
    color: #666;
}

.underpar-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-align: center;
}

.contact-cta-section .section-title {
    color: white;
    font-size: 4rem;
}

.contact-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-item {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
}

.contact-info-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content-split,
    .vip-content,
    .usgtf-content,
    .underpar-content,
    .nycc-content,
    .golf-club-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leagues-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .academy-hero {
        padding: 120px 1rem 80px;
        margin-top: 80px;
    }
    
    .hero-logo {
        height: 80px;
    }
    
    .academy-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .academy-section {
        padding: 60px 1rem;
    }
    
    .coaches-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .coach-photo {
        width: 120px;
        height: 120px;
    }
    
    .packages-grid,
    .clinics-grid,
    .camps-grid {
        grid-template-columns: 1fr;
    }
    
    .tournaments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tournament-photos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-section .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .academy-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .vip-pricing h3 {
        font-size: 2rem;
    }
    
    .underpar-pricing h3 {
        font-size: 2rem;
    }
    
    .tournament-photos {
        grid-template-columns: 1fr;
    }
}