/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --christmas-red: #b91c1c;
    --christmas-green: #15803d;
    --christmas-gold: #d4af37;
    --christmas-blue: #1e40af;
    --light-gold: #f4e4a6;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #1e293b;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(185, 28, 28, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(21, 128, 61, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Snow Animation */
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--christmas-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-img {
  height: 70px;   
  width: auto;
  display: block;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.logo:hover {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.college-name h1 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
    transition: var(--transition);
}

.tagline {
    font-size: 0.9rem;
    color: var(--christmas-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--christmas-gold);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--christmas-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold));
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(185, 28, 28, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(21, 128, 61, 0.15) 0%, transparent 40%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.christmas-title h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: var(--christmas-gold);
    position: relative;
    display: inline-block;
}
.gallery-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold));
    transform: scaleX(0);
    transform-origin: left;
    animation: highlightExpand 1s ease-out 0.5s forwards;
}

@keyframes highlightExpand {
    to {
        transform: scaleX(1);
    }
}

.title-decoration {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.title-decoration i {
    font-size: 1.5rem;
    color: var(--christmas-gold);
    animation: bounce 2s ease-in-out infinite;
}

.title-decoration i:nth-child(2) {
    animation-delay: 0.3s;
    color: var(--christmas-red);
}

.title-decoration i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--light-gold);
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 500px;
}

.hero-image-container {
  perspective: 1000px;
}

.hero-image {
  position: relative;
  transform-style: preserve-3d;
}

/* THIS IS CRITICAL */
.image-frame {
  position: relative;
  width: 600px;
  height: 400px;   /* REQUIRED */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.hero-image:hover .image-frame {
  transform: rotateY(0) rotateX(0) scale(1.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

/* YOUR IMAGE */
.christmas-image {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)),
    url('christmas.PNG') no-repeat center center;
  background-size: contain;
  border-radius: 16px;
}

.nativity::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(5deg) rotateX(-5deg); }
}

/* Countdown Section */
.countdown-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
    border-top: 2px solid var(--christmas-red);
    border-bottom: 2px solid var(--christmas-green);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold), var(--christmas-green));
    margin: 0 auto 50px;
    border-radius: 2px;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.1); }
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    min-width: 120px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: translateX(-100%);
}

.countdown-box:hover::before {
    animation: shine 1s;
}

@keyframes shine {
    to {
        transform: translateX(100%);
    }
}

.countdown-box:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--christmas-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.countdown-label {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-separator {
    color: var(--christmas-gold);
    font-size: 2.5rem;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.countdown-message {
    text-align: center;
    color: var(--light-gold);
    font-size: 1.2rem;
    font-style: italic;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold), var(--christmas-green));
}

.concert-card::before {
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold));
}

.eve-card::before {
    background: linear-gradient(90deg, var(--christmas-blue), var(--christmas-gold));
}

.day-card::before {
    background: linear-gradient(90deg, var(--christmas-green), var(--christmas-gold));
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--christmas-gold);
}

.event-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.event-image-inner {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.event-card:hover .event-image-inner {
    transform: scale(1.1);
}

.concert-image {
    background: linear-gradient(45deg, #7f1d1d, #b91c1c);
}

.eve-image {
    background: linear-gradient(45deg, #1e3a8a, #1e40af);
}

.day-image {
    background: linear-gradient(45deg, #166534, #15803d);
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 41, 59, 0.9);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    min-width: 60px;
    border: 2px solid var(--christmas-gold);
}

.date-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--christmas-gold);
    font-family: 'Playfair Display', serif;
}

.date-month {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 30px;
}

.event-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.event-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-gold);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--christmas-gold);
}

.event-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.event-btn {
    background: linear-gradient(135deg, var(--christmas-red), var(--christmas-gold));
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.event-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(185, 28, 28, 0.3);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: var(--transition);
}

.rotate-left {
    transform: rotate(-2deg);
}

.rotate-right {
    transform: rotate(2deg);
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.bounce-animation {
    animation: bounce 3s ease-in-out infinite;
}

.gallery-item:hover {
    transform: rotate(0) scale(1.05);
    z-index: 10;
}

.gallery-image {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.image-1 {
    background: linear-gradient(45deg, #7f1d1d, #b91c1c, #dc2626);
}

.image-2 {
    background: linear-gradient(45deg, #166534, #15803d, #16a34a);
}

.image-3 {
    background: linear-gradient(45deg, #1e3a8a, #1e40af, #3b82f6);
}

.image-4 {
    background: linear-gradient(45deg, #854d0e, #a16207, #d97706);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Advent Section */
.advent-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.advent-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.advent-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advent-card:hover {
    transform: translateY(-10px);
    border-color: var(--christmas-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.advent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold));
}

.advent-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--christmas-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.advent-content h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.advent-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
}

.advent-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 2px dashed var(--christmas-gold);
    margin-top: 20px;
}

.advent-message i {
    font-size: 2rem;
    color: var(--christmas-gold);
    margin-bottom: 15px;
    display: block;
    animation: twinkle 2s ease-in-out infinite;
}

.advent-message p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.advent-btn {
    background: transparent;
    color: var(--christmas-gold);
    border: 2px solid var(--christmas-gold);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.advent-btn:hover {
    background: var(--christmas-gold);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

/* Message Section */
.message-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.message-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.message-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.message-image-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--christmas-blue), var(--christmas-green));
    animation: gradientShift 10s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.ornament {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--christmas-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    animation: swing 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.ornament-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
    background: var(--christmas-red);
}

.ornament-2 {
    top: 20px;
    right: 20px;
    animation-delay: 0.5s;
    background: var(--christmas-green);
}

.ornament-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
    background: var(--christmas-gold);
}

@keyframes swing {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.message-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.message-quote {
    color: var(--light-gold);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    padding: 0 30px;
}

.message-quote i:first-child {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 2rem;
    color: var(--christmas-gold);
}

.message-quote i:last-child {
    position: absolute;
    bottom: -10px;
    right: 0;
    font-size: 2rem;
    color: var(--christmas-gold);
}

.bible-reference {
    display: block;
    text-align: right;
    margin-top: 15px;
    font-size: 1rem;
    color: var(--christmas-gold);
    font-weight: 600;
}

.message-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}

.message-signature {
    margin-top: 40px;
}

.signature-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold));
    margin-bottom: 10px;
}

.message-signature p {
    color: var(--christmas-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--christmas-red) 0%, var(--christmas-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: var(--christmas-gold);
    color: var(--dark-gray);
}

.cta-btn.primary:hover {
    background: var(--light-gold);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-5px) scale(1.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 2px solid var(--christmas-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo .logo {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.footer-college-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--christmas-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--christmas-gold);
    transform: translateX(5px);
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--christmas-gold);
    color: var(--dark-gray);
    transform: translateY(-3px) rotate(10deg);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--christmas-gold);
    width: 16px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 15px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--christmas-gold);
    text-decoration: underline;
}

/* Modal for Image Gallery */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid var(--christmas-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(212, 175, 55, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.modal-close:hover {
    background: var(--christmas-gold);
    color: var(--dark-gray);
    transform: rotate(90deg);
}

#modalImage {
    width: 100%;
    height: 400px;
}

.modal-info {
    padding: 30px;
    text-align: center;
}

.modal-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.modal-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .christmas-title h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .message-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .countdown-box {
        min-width: 100px;
        padding: 20px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    .nav-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 20px;
    }
    
    .christmas-title h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .advent-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .college-name h1 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .christmas-title h1 {
        font-size: 1.8rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}