/*
Theme Name: PlayLink VTuber Agency - Aqua Theme
Description: PlayLink VTuber事務所の公式ウェブサイト用カスタムテーマ（水色基調）
Version: 2.0
Author: PlayLink Development Team
*/

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

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 50%, #03a9f4 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(79, 195, 247, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    margin: 0 !important;
    margin-top: 0 !important;
    padding-top: 1rem !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

.header-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    width: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.logo-image {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    overflow: hidden;
    position: relative;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-image .custom-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-image .svg-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.3s ease;
    /* SVG specific styles */
    filter: brightness(0) invert(1);
}

.logo-image .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.site-name {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    transition: all 0.3s ease;
}

/* メニューが開いているときは背景のスクロールを無効化（スマホ版のみ） */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* デスクトップ表示の確保 - サブメニューを非表示 */
@media (min-width: 769px) {
    .main-navigation ul.nav-menu > li > .sub-menu,
    .main-navigation > ul > li > .sub-menu,
    .main-navigation .sub-menu {
        display: none !important;
    }
    
    /* 親メニューにホバー */
    .main-navigation ul.nav-menu > li.menu-item-has-children:hover > .sub-menu,
    .main-navigation > ul > li.menu-item-has-children:hover > .sub-menu,
    .main-navigation .menu-item-has-children:hover .sub-menu,
    .main-navigation li.menu-item-has-children:hover .sub-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        pointer-events: auto !important;
    }
    
    /* サブメニュー自体にホバー */
    .main-navigation .sub-menu:hover {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        pointer-events: auto !important;
    }
    
    /* サブメニューにホバーしている間、親メニューもアクティブ状態を維持 */
    .main-navigation li:hover > a,
    .main-navigation li.menu-item-has-children:hover > a {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 50%, #03a9f4 100%);
        box-shadow: 4px 0 20px rgba(79, 195, 247, 0.3);
        z-index: 10000;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .main-navigation.active {
        display: block;
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 1rem;
        margin: 0;
    }
    
    .nav-menu li {
        margin: 0;
        border: none !important;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        background: transparent;
        border: none !important;
        outline: none !important;
        border-radius: 8px;
        margin: 2px 0;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.25) !important;
        border: none !important;
        transform: translateX(5px);
        color: white;
    }
    
    .nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        margin-left: 20px;
        display: none; /* デフォルトで非表示 - JavaScriptで制御 */
        pointer-events: auto;
    }
    
    .nav-menu .sub-menu a {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.8rem 1rem;
    }
    
    .nav-menu .sub-menu a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding-left: 1.5rem;
    }
    
    .nav-menu .menu-item-has-children > a i {
        display: none;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .site-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    
    .site-name {
        font-size: 1.3rem;
    }
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* デスクトップでのサブメニュー非表示設定（メディアクエリで上書きされる） */
.main-navigation ul.nav-menu > li > .sub-menu,
.main-navigation > ul > li > .sub-menu {
    display: none !important;
}

.main-navigation li {
    margin: 0;
    padding: 0;
    border: none !important;
    position: relative;
}

.main-navigation li a {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.main-navigation > ul > li > a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    background: transparent;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    font-size: 0.9rem;
    white-space: nowrap;
    position: relative;
    border-radius: 8px;
    margin: 0 3px;
}

.main-navigation > ul > li > a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.main-navigation > ul > li:hover > a i {
    transform: rotate(180deg);
}

.main-navigation > ul > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-navigation > ul > li > a:hover::before,
.main-navigation > ul > li > a.active::before {
    opacity: 1;
}

.main-navigation > ul > li > a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-navigation > ul > li > a.active {
    color: white;
    background: rgba(255, 255, 255, 0.3);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.main-navigation > ul > li > a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: white;
    border-radius: 2px;
}

/* サブメニュー */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    display: none !important;
    white-space: normal;
    border: 1px solid rgba(79, 195, 247, 0.1);
    pointer-events: none;
}

/* 親メニューとサブメニューの間に見えない接続エリアを作成 */
.main-navigation .menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
    z-index: 999;
    pointer-events: auto;
}

/* 親メニューまたはサブメニューにホバーしている場合、サブメニューを表示 */
.main-navigation li.menu-item-has-children:hover .sub-menu,
.main-navigation .menu-item-has-children:hover .sub-menu,
.main-navigation > ul > li.menu-item-has-children:hover > .sub-menu,
.main-navigation li:hover .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    display: block !important;
    pointer-events: auto !important;
}

/* サブメニュー自体にホバーしても表示を維持 */
.main-navigation .sub-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    display: block !important;
    pointer-events: auto !important;
}

/* サブメニューにホバーしている間、親メニューもアクティブ状態を維持 */
.main-navigation li:hover > a {
    background: rgba(255, 255, 255, 0.2);
}

.main-navigation .sub-menu li {
    margin: 0;
    padding: 0;
}

.main-navigation .sub-menu a {
    color: #2c3e50;
    padding: 14px 24px;
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 0;
    margin: 0 8px;
    position: relative;
    border-radius: 8px;
}

.main-navigation .sub-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.main-navigation .sub-menu a:hover {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.15) 0%, rgba(41, 182, 246, 0.15) 100%);
    color: #4fc3f7;
    padding-left: 28px;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.2);
}

.main-navigation .sub-menu a:hover::before {
    opacity: 1;
}

.main-navigation .sub-menu a.active {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.2) 0%, rgba(41, 182, 246, 0.2) 100%);
    color: #4fc3f7;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.3);
}

.main-navigation .sub-menu a.active::before {
    opacity: 1;
}

/* メニュー項目が多い場合の調整 */
@media (min-width: 769px) and (max-width: 1200px) {
    .main-navigation > ul > li > a {
        font-size: 0.85rem;
        padding: 12px 10px;
    }
    
    .site-name {
        font-size: 1.6rem;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
}

@media (min-width: 1400px) {
    .main-navigation > ul > li > a {
        font-size: 0.95rem;
        padding: 14px 14px;
    }
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    box-sizing: border-box;
}

/* お知らせページや個別投稿ページでは .site-main の max-width を無効化 */
body.page-template-default .site-main,
body.single .site-main,
body.page .site-main {
    max-width: none !important;
    width: 100% !important;
}

/* ヘッダーとフッターは常に全幅 */
.site-header,
.site-footer {
    position: relative;
    z-index: 1000;
}

.site-header .header-container,
.site-footer .footer-container {
    position: relative;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(41, 182, 246, 0.1) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #546e7a;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* SEO強化: Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 1000px;
    padding: 0 1rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #4fc3f7;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* SEO強化: Hero CTA */
.hero-cta {
    margin: 2rem auto;
    max-width: 800px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.15);
}

.cta-text {
    color: #546e7a;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.cta-link {
    color: #4fc3f7;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #4fc3f7;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: #29b6f6;
    border-bottom-color: #29b6f6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Card Styles */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(79, 195, 247, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(79, 195, 247, 0.25);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4fc3f7;
    font-weight: 600;
}

.card-content {
    color: #546e7a;
    line-height: 1.7;
}

/* Talent Grid */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.talent-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(79, 195, 247, 0.1);
    position: relative;
}

.talent-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.25);
}

.talent-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.talent-info {
    padding: 1.5rem;
    position: relative;
}

.talent-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.talent-description {
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.talent-link {
    display: inline-block;
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.talent-link:hover {
    color: #29b6f6;
    border-bottom-color: #29b6f6;
}

.no-talents {
    text-align: center;
    color: #546e7a;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
}

.no-talents a {
    color: #4fc3f7;
    text-decoration: none;
    font-weight: 500;
}

.no-talents a:hover {
    text-decoration: underline;
}

.talent-badges {
    position: absolute;
    top: -15px;
    right: 15px;
    display: flex;
    gap: 5px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.featured-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.new-badge {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
}

.talent-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.talent-description {
    color: #546e7a;
    font-size: 0.9rem;
    line-height: 1.5;
}

.talent-links {
    margin-top: 1rem;
    display: flex;
    gap: 10px;
}

.social-link {
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.social-link:hover {
    transform: scale(1.1) rotate(5deg);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 195, 247, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #81c784 0%, #66bb6a 100%);
}

.btn-secondary:hover {
    box-shadow: 0 10px 25px rgba(129, 199, 132, 0.4);
}

.btn-tertiary {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.btn-tertiary:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #37474f 0%, #263238 100%);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    left: 0 !important;
    right: 0 !important;
    position: relative;
}

.footer-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4fc3f7;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #4fc3f7;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section a:hover {
    color: #4fc3f7;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #455a64;
    color: #90a4ae;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom a {
    color: #90a4ae;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #4fc3f7;
    text-decoration: underline;
}

/* Page Styles */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.1) 0%, rgba(41, 182, 246, 0.1) 100%);
    border-radius: 20px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.15);
    margin-bottom: 2rem;
    border: 1px solid rgba(79, 195, 247, 0.1);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1f5fe;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4fc3f7;
    background: white;
    box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.1);
}

/* News Section */
.news-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.1);
    border-left: 4px solid #4fc3f7;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.2);
}

.news-date {
    color: #4fc3f7;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.news-content {
    color: #546e7a;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul {
        text-align: left;
        display: inline-block;
    }
}
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .site-logo {
        flex: 0 0 auto;
    }
    
    .mobile-menu-toggle {
        margin-left: auto;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        text-align: left;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .card-grid,
    .talent-grid {
        grid-template-columns: 1fr;
    }
    
    .page-content {
        padding: 2rem;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #546e7a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(79, 195, 247, 0.3);
    border-radius: 50%;
    border-top-color: #4fc3f7;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}