/* 国友职业培训学校 - 卡片式蓝色商务风格样式表 */

/* 全局重置和基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

/* 容器样式 */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 卡片基础样式 */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 按钮样式 */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #2563eb;
  text-decoration: none;
  border: 2px solid #2563eb;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #2563eb;
  color: #fff;
}

/* 头部样式 */
.header-main {
  background: linear-gradient(135deg, #e5f0fa, #e0eaf4);
  color: #000000;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 60px;
  margin-right: 15px;
}

.logo-text h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #000000;
}

.logo-text .school-tagline {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  color: #000000;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item i {
  font-size: 18px;
  color: #60a5fa;
}

.qr-code {
  text-align: center;
}

.qr-code img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.qr-code p {
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.9;
}

/* 导航样式 */
.nav-main {
	background-color:#2152ce;
 
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 9999;
}

.nav-main .container {
  display: flex;
  justify-content: center;
}

/* 导航右侧容器 */
.right.nav {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10000;
}

.right.nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.right.nav ul.clearfix {
  display: flex;
}

.right.nav li {
  position: relative;
}

.right.nav li a {
  display: flex;
  align-items: center;
  padding: 15px 35px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;

  min-width: 120px;
  justify-content: center;
  white-space: nowrap;
}

.right.nav li a:hover,
.right.nav li a.hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
 
}

.right.nav li a p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.right.nav li a i {
  margin-left: 8px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
}

/* 二级下拉菜单 */
.right.nav li dl {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 99999;
  margin: 0;
  padding: 10px 0;
}

.right.nav li:hover dl {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.right.nav li dl dd {
  margin: 0;
  list-style: none;
}

.right.nav li dl dd a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f1f5f9;
}

.right.nav li dl dd:last-child a {
  border-bottom: none;
}

.right.nav li dl dd a:hover {
  background:#cfdfee;
  color: #2563eb;
  padding-left: 25px;
}

/* Banner轮播样式 */
.banner-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 60px;
}

.banner-container {
  position: relative;
  height: 100%;
}

.banner-slider {
  position: relative;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.banner-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

.banner-prev,
.banner-next {
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.banner-prev:hover,
.banner-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* 新闻公告区域 */
.news-section {
  padding: 60px 0;
  background: #fff;
}

/* 三栏布局 */
.news-three-columns {
  display: grid;
  grid-template-columns: calc(33.33% + 50px) calc(33.33% - 25px) calc(33.33% - 25px);
  gap: 30px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .news-three-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #e2e8f0;
}

.section-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1e40af;
  display: flex;
  align-items: center;
  gap: 10px;
}

.more-link {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.more-link:hover {
  color: #2563eb;
}

/* 新闻轮播 */
.news-carousel {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.carousel-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.carousel-link:hover {
  text-decoration: none;
}

.news-main {
  padding: 30px;
}

.news-main .section-header {
  margin-bottom: 20px;
}

.news-slider {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.news-slide {
  min-width: 100%;
  position: relative;
}

.news-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 30px;
}

.news-overlay h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.news-date {
  font-size: 12px;
  opacity: 0.8;
}

/* 学校新闻列表 */
.news-list {
  margin-top: 20px;
}

.news-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list .news-item {
  border-bottom: 1px solid #f1f5f9;
  padding: 12px 0;
}

.news-list .news-item:last-child {
  border-bottom: none;
}

.news-list .news-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.news-list .news-item a:hover {
  color: #2563eb;
}

.news-list .news-title {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.news-list .news-date {
  font-size: 12px;
  color: #64748b;
  margin-left: 15px;
  opacity: 1;
}

.news-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.news-prev,
.news-next {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-prev:hover,
.news-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* 通知公告 */
.notice-main {
  padding: 30px;
}

/* 口腔资讯 */
.dental-info {
  padding: 30px;
}

.dental-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dental-item {
  border-bottom: 1px solid #f1f5f9;
  padding: 15px 0;
}

.dental-item:last-child {
  border-bottom: none;
}

.dental-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.dental-item a:hover {
  color: #2563eb;
}

.dental-title {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.dental-date {
  font-size: 12px;
  color: #64748b;
  margin-left: 15px;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-item {
  border-bottom: 1px solid #f1f5f9;
  padding: 15px 0;
}

.notice-item:last-child {
  border-bottom: none;
}

.notice-item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.notice-item a:hover {
  color: #2563eb;
}

.notice-title {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

.notice-date {
  font-size: 12px;
  color: #64748b;
  margin-left: 15px;
}

/* 专业介绍区域 */
.major-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.major-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  border: none;
}

.major-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 15px;
}

.major-section .section-header p {
  font-size: 16px;
  color: #64748b;
}

.major-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.major-info {
  padding: 40px;
}

.major-info h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 20px;
}

.major-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 30px;
}

.major-features {
  list-style: none;
  margin-bottom: 30px;
}

.major-features li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 15px;
  color: #374151;
}

.major-features i {
  color: #10b981;
  margin-right: 12px;
  font-size: 16px;
}

.major-buttons {
  display: flex;
  gap: 20px;
}

.major-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 名师介绍区域 */
.teachers-section {
  padding: 80px 0;
  background: #fff;
}

.teachers-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  border: none;
}

.teachers-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 15px;
}

.teachers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.teacher-card {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.teacher-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e2e8f0;
  transition: all 0.3s ease;
}

.teacher-card:hover .teacher-avatar {
  border-color: #2563eb;
  transform: scale(1.05);
}

.teacher-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-name {
  font-size: 18px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 8px;
}

.teacher-title {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}

.teacher-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* 社交媒体区域 */
.social-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #fff;
}

.social-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  border: none;
}

.social-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.social-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.social-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.social-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: #fc8034;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-item:hover .social-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.social-icon i {
  font-size: 24px;
  color: #fff;
}

.social-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.social-item p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.social-id {
  font-size: 12px;
  opacity: 0.8;
  font-family: 'Courier New', monospace;
}

/* 校园风光区域 */
.gallery-section {
  padding: 80px 0;
  background: #f8fafc;
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  border: none;
}

.gallery-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.gallery-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  color: #fff;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.gallery-overlay i {
  font-size: 24px;
  opacity: 0.8;
}

/* 尾部样式 */
.footer-section {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #fff;
  padding: 60px 0 0;
}

.footer-main {
 
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-contact i {
  color: #60a5fa;
  width: 16px;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #60a5fa;
  padding-left: 5px;
}

.footer-qr {
  text-align: center;
  margin-bottom: 20px;
}

.footer-qr img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.footer-qr p {
  font-size: 12px;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #60a5fa;
  transform: translateY(-2px);
}

/* 友情链接 */
.footer-links {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.links-header h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #60a5fa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.links-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.links-content a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.links-content a:hover {
  color: #60a5fa;
}

/* 版权信息 */
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-left p,
.copyright-right p {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 5px;
}

.copyright-left a,
.copyright-right a {
  color: #60a5fa;
  text-decoration: none;
}

/* 返回顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

/* 在线客服 */
.online-service {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 1000;
}

.service-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4);
}

.service-panel {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.service-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.service-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1e40af;
}

.service-close {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  font-size: 16px;
}

.service-content {
  padding: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.service-item i {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
}

.service-item div p {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 2px;
}

.service-item div strong {
  font-size: 14px;
  color: #1e40af;
}

.service-qr {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.service-qr img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .teachers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .header-top {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .major-content {
    grid-template-columns: 1fr;
  }
  
  .teachers-grid {
    grid-template-columns: 1fr;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .copyright-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .banner-content h2 {
    font-size: 32px;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}