* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 92, 246, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

h1 {
    color: #8B5CF6;
    font-weight: 700;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    font-size: 1.2rem;
    display: none;
}

.nav-text {
    white-space: nowrap;
}

nav a:hover,
nav a.active {
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
    transform: translateY(-2px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Pulsing animation for info link */
nav a[href="#announcements"] .nav-icon {
    animation: pulse-info 2s infinite;
}

nav a[href="#announcements"] .nav-text {
    position: relative;
}

nav a[href="#announcements"] .nav-text::after {
    content: "•";
    position: absolute;
    top: -5px;
    right: -8px;
    color: #EC4899;
    font-size: 1.2rem;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-info {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

main {
    margin: 2rem auto;
    background: white;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    overflow: hidden;
}

.section {
    display: none;
    padding: 3rem;
    animation: fadeIn 0.5s ease-in;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Location Styles */
.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.location-info ul {
    list-style: none;
    margin-top: 1rem;
}

iframe {
    width: 100%;
    border: none;
}

.address-card {
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    padding: 2rem;
    border-radius: 15px;
}

.map-placeholder {
    background: linear-gradient(135deg, #EDE9FE 0%, #FDF2F8 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.directions {
    background: linear-gradient(135deg, #FAF5FF 0%, #FEF7FF 100%);
    padding: 2rem;
    border-radius: 15px;
}


.directions li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

/* Menu Styles */
.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-category {
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #EC4899;
}

.menu-category h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.menu-category li:last-child {
    border-bottom: none;
}

/* Rooms Styles */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.room-card {
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.15);
    transition: transform 0.3s ease;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
}

.room-card h3 {
    color: #8B5CF6;
    margin-bottom: 1rem;
}

.room-card ul {
    list-style: none;
    margin-top: 1rem;
}

.room-card li {
    padding: 0.3rem 0;
    color: #666;
}

.room-card li:before {
    content: "✓ ";
    color: #EC4899;
    font-weight: bold;
}

/* Rooms Table Styles */
.rooms-table-container {
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.rooms-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.1);
}

.rooms-table th {
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.rooms-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    color: #333;
    font-size: 1rem;
}

.rooms-table .gradient-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
}

.rooms-table tr:last-child td {
    border-bottom: none;
}

.rooms-table tr:nth-child(even) {
    background: linear-gradient(135deg, #FAF5FF 0%, #FEF7FF 100%);
}

.rooms-table tr:not(.gradient-header):hover {
    background: linear-gradient(135deg, #EDE9FE 0%, #FDF2F8 100%);
    transform: scale(1.01);
    transition: all 0.2s ease;
}

.rooms-table td:first-child {
    font-weight: 600;
    color: #8B5CF6;
    text-align: center;
    width: 20%;
}

/* Announcements Styles */
.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.announcements-list ul {
    list-style: none;
    padding: 0;
}

.announcement {
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid;
    transition: transform 0.2s ease;
}

.announcement a {
    text-decoration: none;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.announcement:hover {
    transform: translateX(5px);
}

.announcement.urgent {
    background: linear-gradient(135deg, #FEF2F2 0%, #FDF2F8 100%);
    border-color: #EC4899;
}

.announcement.info {
    background: linear-gradient(135deg, #F0F9FF 0%, #F3E8FF 100%);
    border-color: #8B5CF6;
}

.announcement.reminder {
    background: linear-gradient(135deg, #FFFBEB 0%, #FAF5FF 100%);
    border-color: #A855F7;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.urgent {
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
    color: white;
}

.badge.info {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
}

.badge.reminder {
    background: linear-gradient(135deg, #A855F7 0%, #C084FC 100%);
    color: white;
}

.date {
    color: #666;
    font-size: 0.9rem;
}

.announcement h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Stylish Countdown Container */
.countdown-container-stylish {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    color: white;
    position: relative;
    overflow: hidden;
}

.countdown-container-stylish::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.countdown-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.countdown-timer-big {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.time-unit-big {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.time-unit-big:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.time-value-big {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.time-label-big {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.event-date-stylish {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

footer {
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
}

/* Disclaimer Box Styles */
.disclaimer-box {
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.disclaimer-box h3 {
    color: #8B5CF6;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}


/* Photos Section Styles */
.photos-container {
    max-width: 1000px;
    margin: 0 auto;
}

.photos-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.photos-info h3 {
    color: #8B5CF6;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.photos-info p {
    color: #6B21A8;
    font-size: 1.1rem;
    line-height: 1.6;
}

.upload-button-container {
    text-align: center;
}

.upload-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.upload-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.album-preview {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.1);
}

.album-header {
    text-align: center;
    margin-bottom: 2rem;
}

.album-header h4 {
    color: #8B5CF6;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.album-header p {
    color: #666;
    font-size: 1rem;
}

.photos-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.photo-placeholder {
    background: linear-gradient(135deg, #EDE9FE 0%, #FDF2F8 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.photo-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.photo-placeholder p {
    color: #8B5CF6;
    font-weight: 500;
    font-size: 0.9rem;
}

.album-link-section {
    text-align: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.album-link-section h4 {
    color: #8B5CF6;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.album-link-section p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.view-album-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.view-album-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.photo-tips {
    background: linear-gradient(135deg, #FEF7FF 0%, #FAF5FF 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.photo-tips h4 {
    color: #A855F7;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: white;
    padding: 1.8rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.tip-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.tip-card h5 {
    color: #A855F7;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.tip-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Attractions Section Styles */
.attractions-container {
    max-width: 1100px;
    margin: 0 auto;
}

.attractions-intro {
    text-align: center;
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.attractions-intro h3 {
    color: #8B5CF6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.attractions-intro p {
    color: #6B21A8;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.attraction-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
}

.attraction-image {
    height: 200px;
    background: linear-gradient(135deg, #EDE9FE 0%, #FDF2F8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B5CF6 20%, #EC4899 80%);
    position: relative;
}

.attraction-icon {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.attraction-content {
    padding: 2rem;
}

.attraction-content h4 {
    color: #8B5CF6;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.attraction-distance {
    margin-bottom: 1.5rem;
}

.distance-badge {
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.attraction-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.attraction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    color: #8B5CF6;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.attraction-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.attraction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.travel-tips {
    background: linear-gradient(135deg, #FEF7FF 0%, #FAF5FF 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.travel-tips h4 {
    color: #A855F7;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

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

.travel-tip {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.travel-tip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.travel-tip .tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.tip-content h5 {
    color: #A855F7;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tip-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Seating Section Styles */
.seating-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seating-intro {
    text-align: center;
    background: linear-gradient(135deg, #F3E8FF 0%, #FCE7F3 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.seating-intro h3 {
    color: #8B5CF6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.seating-intro p {
    color: #6B21A8;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.table-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.25);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.1);
}

.table-header h4 {
    color: #8B5CF6;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.table-badge {
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.table-layout {
    position: relative;
}

.fallback-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: 3px solid #8B5CF6;
}

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

.note-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.note-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.note-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.note-card h5 {
    color: #A855F7;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.note-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.table-image {
    max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 20px;
        text-align: center;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        gap: 0.8rem;
        justify-content: space-between;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    nav a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        min-width: auto;
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .nav-icon {
        display: block;
        font-size: 1.1rem;
    }
    
    .nav-text {
        font-size: 0.7rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .rooms-table-container {
        padding: 1rem;
    }
    
    .rooms-table th,
    .rooms-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .countdown-container-stylish {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .countdown-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-timer-big {
        gap: 0.5rem;
    }
    
    .time-unit-big {
        min-width: 70px;
        padding: 0.8rem 0.5rem;
    }
    
    .time-value-big {
        font-size: 1.8rem;
    }
    
    .time-label-big {
        font-size: 0.7rem;
        margin-top: 0.3rem;
    }
    
    .event-date-stylish {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .photos-header {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .photos-info h3 {
        font-size: 1.5rem;
    }

    .disclaimer-box h3 {
        font-size: 1.5rem;
    }
    
    .upload-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .album-preview {
        padding: 1.5rem;
    }
    
    .photos-grid-preview {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .photo-placeholder {
        padding: 1.5rem;
        min-height: 140px;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tip-card {
        padding: 1.5rem;
    }
    
    .attractions-intro {
        padding: 2rem 1.5rem;
    }
    
    .attractions-intro h3 {
        font-size: 1.6rem;
    }
    
    .attractions-intro p {
        font-size: 1.1rem;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .attraction-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .attraction-image {
        height: 160px;
    }
    
    .attraction-icon {
        font-size: 3rem;
    }
    
    .attraction-content {
        padding: 1.5rem;
    }
    
    .attraction-content h4 {
        font-size: 1.3rem;
    }
    
    .travel-tips {
        padding: 2rem;
    }
    
    .travel-tips h4 {
        font-size: 1.5rem;
    }
    
    .tips-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .travel-tip {
        padding: 1.5rem;
    }
    
    .seating-intro {
        padding: 2rem 1.5rem;
    }
    
    .seating-intro h3 {
        font-size: 1.6rem;
    }
    
    .seating-intro p {
        font-size: 1.1rem;
    }
    
    .tables-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .table-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .table-visual {
        width: 250px;
        height: 250px;
    }
    
    .table-visual.table-6 {
        width: 200px;
        height: 200px;
    }
    
    .table-visual.table-4 {
        width: 180px;
        height: 180px;
    }
    
    .table-center {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .seat {
        width: 60px;
        height: 60px;
    }
    
    .seat img, .fallback-avatar {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .seat p {
        font-size: 0.6rem;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .note-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    header .container {
        padding: 0.8rem 15px;
        gap: 0.8rem;
    }
    
    nav ul {
        gap: 0.3rem;
    }
    
    nav a {
        padding: 0.5rem 0.4rem;
        border-radius: 12px;
    }
    
    .nav-icon {
        font-size: 1rem;
    }
    
    .nav-text {
        font-size: 0.6rem;
        line-height: 1;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .rooms-table-container {
        padding: 0.8rem;
    }
    
    .rooms-table th,
    .rooms-table td {
        padding: 0.6rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .countdown-timer-big {
        gap: 0.3rem;
    }
    
    .time-unit-big {
        min-width: 60px;
        padding: 0.6rem 0.3rem;
    }
    
    .time-value-big {
        font-size: 1.5rem;
    }
    
    .time-label-big {
        font-size: 0.6rem;
    }
    
    .countdown-title {
        font-size: 1.3rem;
    }
    
    .event-date-stylish {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
    
    .photos-header {
        padding: 1.5rem;
    }
    
    .photos-info h3 {
        font-size: 1.3rem;
    }
    
    .photos-info p {
        font-size: 1rem;
    }

    .disclaimer-box h3 {
        font-size: 1.3rem;
    }
    
    .upload-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .album-preview {
        padding: 1rem;
    }
    
    .photos-grid-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-placeholder {
        padding: 1rem;
        min-height: 120px;
    }
    
    .placeholder-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .photo-placeholder p {
        font-size: 0.8rem;
    }
    
    .attractions-intro {
        padding: 1.5rem 1rem;
    }
    
    .attractions-intro h3 {
        font-size: 1.4rem;
    }
    
    .attractions-intro p {
        font-size: 1rem;
    }
    
    .attractions-grid {
        gap: 1.5rem;
    }
    
    .attraction-content {
        padding: 1rem;
    }
    
    .attraction-content h4 {
        font-size: 1.2rem;
    }
    
    .travel-tips {
        padding: 1.5rem;
    }
    
    .travel-tip {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .seating-intro {
        padding: 1.5rem 1rem;
    }
    
    .seating-intro h3 {
        font-size: 1.4rem;
    }
    
    .seating-intro p {
        font-size: 1rem;
    }
    
    .tables-grid {
        gap: 1.5rem;
    }
    
    .table-card {
        padding: 1rem;
    }
    
    .table-header h4 {
        font-size: 1.2rem;
    }
    
    .table-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .note-card {
        padding: 1rem;
    }
}

@media (max-width: 380px) {
    header .container {
        padding: 0.7rem 10px;
        gap: 0.7rem;
    }
    
    h1 {
        font-size: 1.2rem;
    }
}
