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

body {
    background: linear-gradient(90deg, #a6a6a6, #ffffff);
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.site-header {
    background: linear-gradient(90deg, #a6a6a6, #ffffff);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem; /* 画像とテキストの間隔 */
}

.site-logo {
    width: 50px;     /* 任意のサイズに調整 */
    height: auto;
}

.site-title {
    line-height: 1;
}

.site-title a {
    color: #333;
    text-decoration: none;
    font-size: clamp(12px, 1.7vw, 24px);
    font-weight: bold;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007cba;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 96px;
    overflow: hidden;
}

.responsive-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* 動画の上に重ねる文字コンテンツ */
.hero-content {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.hero-description {
    font-size: clamp(16px, 2.3vw, 32px);
    font-weight: bold;
    color: #ffde59;
	text-shadow: -1px -1px 0 #13401a, 1px -1px 0 #13401a, -1px 1px 0 #13401a, 1px 1px 0 #13401a;
}

.hero-eligibility {
    font-size: clamp(16px, 2vw, 32px);
    font-weight: bold;
    color: #ffffff;
}

.hero-button {
    width: 100%;
    max-width: 300px;
    display: inline-block;
    background: url(https://rekosai.upc-m.com/wp-content/themes/music-studio/images/width_800.webp) no-repeat center center;
    background-size: cover;
    color: #13401a;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: clamp(24px, 3.5vw, 48px);
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

@media (max-width: 1000px) {
    .hero-content {
        position: relative;
        text-align: center;
        width: 100%;
        background: linear-gradient(180deg, #a6a6a6, #ffffff);
        padding: 1rem;
    }

    .hero-eligibility {
        color: #000000;
    }
}

/* Section Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(13px, 2vw, 32px);
    text-align: center;
    color: #0a6419;
}

.section-title.page-menu {
    font-size: clamp(24px, 2vw, 32px);
}

.section-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(180deg, #a6a6a6, #ffffff);
    flex-wrap: wrap;
    padding: 2rem 0;
}

.section-title-image {
    max-width: 150px;
    height: auto;
    padding: 1rem;
}

/* Page Menu Section */
.page-menu-section {
    padding: 4rem 0;

}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.page-menu-link {
    background: linear-gradient(90deg, #d6a81e, #fff5b4, #a6a6a6);
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    font-size: clamp(16px, 2vw, 24px);
}

.page-menu-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Winners Section */
.winners-section {
    max-width: 1200px;
    margin: auto;
    padding-top: 4rem;
    background: linear-gradient(180deg, #ffe586, #fffefa, #faefa6);
    margin-bottom: 2rem;
}

.winners-grid {
    display: grid;
    gap: 1.5rem; /* 👈 各アイテムの間に余白を設定 */
    margin-top: 2rem; /* セクション上との間隔も調整可能 */
}

.winner-item {
    border: 15px double #b8860b; /* 濃いゴールド色の二重線 */
    border-radius: 10px;
    padding: 1rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* テキストと動画の間に余白 */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.winner-text {
    position: relative;
    display: flex;
    gap: 1rem;
    z-index: 2;
    padding: 1.5rem;
}

.winner-details {
    font-size: clamp(12px, 2vw, 24px);
    margin: auto;
}

.winner-item h3 {
    color: #000;
    margin-bottom: 1rem;
}

.winner-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.winner-item p {
    color: #666;
    line-height: 1.6;
}

/* Deadline Section */
.deadline-section {
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.deadline-content {
    margin: 0 auto;
}

.deadline-title {
    color: #000;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: url('images/uri_ifs___M_321d2538-2107-4843-9843-cd42f3bda70d.webp') no-repeat center center;
    background-size: contain;
    padding: 2rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.deadline-eligibility {
    color: #eaeaea;
    font-size: clamp(24px, 2vw, 32px);
    font-weight: bold;
    text-shadow:
        -1px -1px 0 #13401a,
         1px -1px 0 #13401a,
        -1px  1px 0 #13401a,
         1px  1px 0 #13401a; /* 四方向に影をつけて縁取り効果 */
}

.deadline-button {
    display: inline-block;
    background: white;
    color: #007cba;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.deadline-button:hover {
    background: #f8f9fa;
}

@media (max-width: 754px) {
    .winner-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .youtube-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .winner-item {
        height: auto; /* ✅ 中身に合わせて高さを変える */
    }
}

/* 「レコ祭」の趣旨説明とあゆみ */
.concept-section {
    margin-top: 3rem;
    padding: 1rem;
}

.concept-text {
    font-size: clamp(16px, 1.5vw, 24px);
    line-height: 1.8;
    color: #333;
}

.concept-right {
    font-size: clamp(16px, 1.5vw, 24px);
    text-align: right;
    font-weight: bold;
    margin-top: 1.5rem;
    color: #444;
}

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

.concept-images img {
    width: 48%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Related Auditions Section */
.related-auditions-section {
    max-width: 1200px;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
    background: linear-gradient(180deg, #ffe586, #fffefa, #faefa6);
}

.auditions-grid {
    display: flex;
    gap: 2rem;
}

.audition-item {
    background-image: url('https://rekosai.upc-m.com/wp-content/themes/music-studio/images/download.svg');
    background-size: cover;         /* 背景を全体にフィットさせる */
    background-repeat: no-repeat;   /* 繰り返さない */
    background-position: center;    /* 中央に配置 */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audition-item1 {
    background-image: url('https://rekosai.upc-m.com/wp-content/themes/music-studio/images/download-1.svg');
    background-size: cover;         /* 背景を全体にフィットさせる */
    background-repeat: no-repeat;   /* 繰り返さない */
    background-position: center;    /* 中央に配置 */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.audition-message {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.audition-message1 {
    background: #ffd600;
    margin: 0;
    font-weight: bold;
    font-size: clamp(16px, 1vw, 24px);
}

.audition-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.audition-image {
    max-width: 100px;
    height: auto;
    border-radius: 8px;
}

.audition-text h4 {
    font-size: clamp(20px, 2vw, 32px);
    color: #343a78;
    margin: 0;
    font-weight: bold;
}

.audition-link {
    color: #343a78;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(16px, 1.5vw, 24px);
}

.audition-item h3 {
    color: #343a78;
    margin-bottom: 1rem;
    font-size: clamp(16px, 1.5vw, 24px);
}

.audition-item p {
    color: #666;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .auditions-grid {
        flex-direction: column;
    }

    .audition-content {
        flex-direction: column;
        text-align: center;
    }

    .audition-image {
        max-width: 80%;
        margin-bottom: 1rem;
    }
}

/* Flow Section */
.flow-section {
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(180deg, #ffe586, #fffefa, #faefa6);
    padding: 2rem 0;
    margin-bottom: 2rem
}

.flow-steps {
    margin-top: 1rem;
    display: block;
}

.flow-steps > *:not(:last-child) {
    margin-bottom: 2rem;
}

.flow-step {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 10px;
    position: relative;
    gap: 2rem;
    font-size: clamp(11px, 2vw, 24px);
}

.flow-step:nth-child(odd) {
    background: linear-gradient(180deg, #a6a6a6, #ffffff);
}

.flow-step:nth-child(even) {
    background: linear-gradient(180deg, #95e6b8, #ffffff);
}

.flow-step:nth-child(8) {
    background: linear-gradient(90deg, #d6a81e, #fff5b4, #ffffff);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.flow-step p {
    font-weight: bold;
    color: #333;
    flex: 1;
    margin: 0;
}

.step-actor {
    color: #666;
    flex-shrink: 0;
    text-align: right;
}

/* 参加特典・全国デビューまでのメニュー紹介 */
.stage-subtitle {
    font-size: 1.6rem;
    font-weight: bold;
    color: #0a6419;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.stage-one-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(90deg, #d6a81a, #fff5b4, #ffffff);
    font-size: clamp(16px, 2vw, 24px);
}

.stage-subtitle {
    font-size: clamp(20px, 2vw, 32px);
    font-weight: bold;
    color: #13401a;
    text-align: center;
    margin-bottom: 1rem;
}

.stage-description {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.stage-benefit {
    text-align: center;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stage-images {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.stage-images img {
    width: 200px;
    height: auto;
}

.stage-note {
    text-align: center;
}

.youtube-sample-section {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}


.youtube-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    background: linear-gradient(90deg, #d8caca, #ffffff);
}

.youtube-title {
    font-size: clamp(16px, 2vw, 32px);
    text-align: center;
    margin-bottom: 2rem;
    color: #13401a;
    font-weight: bold;
}

.youtube-videos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.youtube-video-item {
    max-width: 480px;
    text-align: center;
}

.youtube-label {
    font-size: clamp(16px, 2vw, 24px);
    margin-top: 0.5rem;
    font-weight: bold;
    color: #333;
}

/* 第2ステージ 二次審査通過 */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #d6a81a, #fff5b4, #ffffff);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.option-item p {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: bold;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.option-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-left: 1rem;
}



/* 第3ステージ 三次審査通過 */

.stage-row {
    background: linear-gradient(90deg, #d6a81a, #fff5b4, #ffffff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 4rem 1rem;
}

.stage-text {
    flex: 1 1 300px;
}

.stage-text h3 {
    font-size: clamp(20px, 2vw, 32px);
    font-weight: bold;
    color: #333;
    text-align: center;
}

.stage-images-side {
    position: relative;
    flex: 1 1 300px;
    height: 280px; /* 高さを指定することでposition調整が機能 */
}

.stage-images-side img {
    position: absolute;
    width: 60%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stage-images-side .video-wrapper.image-right {
    position: absolute;
    width: 60%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    top: 0;
    right: 0;
    z-index: 2;
}

.stage-images-side .video-wrapper.image-right iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: none;
}

/* 左下の画像 */
.stage-images-side .image-left {
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* 右上の画像（少し上に出す） */
.stage-images-side .image-right {
    top: 0;
    right: 0;
    z-index: 2;
}

  /* 動画横並び */
.video-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex: 1 1 300px;
}

.video-wrapper {
    flex: 1 1 300px;
    max-width: 480px;
	margin: auto;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .stage-images-side {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stage-images-side img {
        position: static;
        width: 80%;
    }

    .stage-images-side .image-right {
        display: none;
    }
}

/* ご協力いただいた先生方の紹介 */
.support-section {
    margin-top: 3rem;
    padding: 1rem;
}

.support-title,
.support-subtitle {
    font-size: clamp(11px, 2vw, 24px);
    font-weight: bold;
    margin: 2rem 0 1rem;
    color: #222;
    text-align: center;
}

.support-item {
    background: linear-gradient(90deg, #d6a81a, #fff5b4, #ffffff);
    display: flex;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
}

.support-image img {
    width: 100px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.support-text {
    flex: 1;
    min-width: 250px;
}

.deceased {
    font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", serif;
    font-size: 0.9em;
    font-weight: normal;
    font-style: normal;
}

.support-text p {
    font-size: clamp(10px, 2vw, 24px);
    line-height: 1.7;
    color: #333;
}

/* あゆみと実績 */
.achievement-content {
    background: linear-gradient(90deg, #d6a81a, #fff5b4, #ffffff);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    flex-direction: row; /* デフォルトは横並び */
  }
  
  /* スマホサイズ（幅768px以下）では縦並びに変更 */
  @media screen and (max-width: 768px) {
    .achievement-content {
      flex-direction: column;
    }
  }

.achievement-video,
.achievement-text,
.achievement-image {
    flex: 1;
    max-width: 400px;
    padding: 1rem;
}

.achievement-video iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.achievement-text p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
}

.achievement-image img {
    width: 200px;
    height: auto;
    display: block;
}

.debut-section {
    margin-top: 50px;
    text-align: center;
}

.debut-title {
    font-size: clamp(11px, 2vw, 24px);
    font-weight: bold;
    margin-bottom: 20px;
}

.video-pair {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-item {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.video-item iframe {
    width: 100%;
    height: 280px;
    border: none;
}

.video-trio-section {
    margin-top: 40px;
}

.video-trio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-trio .video-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.video-trio .video-item iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* コロナ禍と放送再開に関するテキスト */
.recording-festival-info {
    margin-top: 40px;
    padding: 20px;
    border-radius: 8px;
    font-size: clamp(16px, 2vw, 28px);
    line-height: 1.8;
}

.recording-festival-info h4 {
    font-size: clamp(16px, 2vw, 28px);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.recording-festival-info ul {
    padding-left: 1.2em;
    list-style-type: disc;
}

.recording-festival-info ul li {
    margin-bottom: 6px;
}

/* もっと詳しく見る */

.more-details-video {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.more-details-video iframe {
    width: 100%;
    max-width: 720px;
    height: 400px; /* 16:9 aspect ratio */
    border: none;
}

.faq-section {
    padding: 40px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 24px;
    font-size: clamp(16px, 2vw, 24px);
}

.faq-question {
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
}

.faq-answer {
    line-height: 1.6;
    color: #555;
}

/* オーディション概要セクション */
.audition-section {
    padding: 40px 20px;
}

.audition-section-title {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

.audition-container {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.8;
    color: #333;
}

.audition-content p {
    margin-bottom: 20px;
}

/* 賞典セクション */
.awards-section {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.awards-content {
    flex: 1;
}

.awards-video {
    flex: 1;
    max-width: 400px;
}

.awards-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .awards-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .awards-video {
        max-width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        right: 0%;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, #a6a6a6, #ffffff);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .deadline-title,
    .application-deadline {
        font-size: 2rem;
    }

    .flow-steps {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .menu-grid,
    .winners-grid,
    .auditions-grid {
        grid-template-columns: 1fr;
    }

    .flow-steps {
        grid-template-columns: 1fr;
    }

    .option-item img {
        width: 50px;
    }
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
}

.copyright {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 1rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
}