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

:root {
    /* Hotel Centenera Brand Colors - Dark & Sophisticated */
    --hotel-primary: hsl(340, 82%, 52%);     /* Deep crimson */
    --hotel-secondary: hsl(45, 100%, 51%);   /* Rich gold */
    --hotel-accent: hsl(0, 0%, 10%);         /* Dark charcoal */
    --hotel-text: hsl(0, 0%, 95%);           /* Light text */
    --hotel-gradient: linear-gradient(135deg, var(--hotel-primary), var(--hotel-secondary));
    --hotel-glow: 0 0 20px rgba(220, 38, 127, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #f1f5f9;
    line-height: 1.6;
    overflow-x: hidden;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

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

/* Hotel Gradient Text */
.hotel-gradient {
    background: var(--hotel-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Navigation */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 127, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--hotel-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(241, 245, 249, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: var(--hotel-secondary);
    background: rgba(220, 38, 127, 0.1);
    border-color: rgba(220, 38, 127, 0.3);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--hotel-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

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

.logo-container {
    margin-bottom: 2rem;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(220, 38, 127, 0.3)); }
    50% { filter: drop-shadow(0 0 20px rgba(220, 38, 127, 0.6)); }
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: var(--hotel-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--hotel-secondary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-button {
    display: inline-block;
    background: var(--hotel-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-button:hover {
    background: #b91c70;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: white;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.rooms-section {
    background: #111827;
}

.schedules-section {
    background: #1f2937;
}

.promotions-section {
    background: #111827;
}

.consumables-section {
    background: #1f2937;
}

.contact-section {
    background: #111827;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.section-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(220, 38, 127, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-card:hover {
    border-color: rgba(220, 38, 127, 0.6);
    box-shadow: 0 8px 30px rgba(220, 38, 127, 0.25);
    transform: translateY(-2px);
}

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

.room-card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: scale(1.02);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--hotel-primary);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1.2rem;
}

.room-content {
    padding: 2rem;
}

.room-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f1f5f9;
    margin-bottom: 1rem;
    text-align: center;
}

.room-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-badge {
    background: var(--hotel-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    display: inline-block;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.room-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.room-features li {
    display: flex;
    align-items: center;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.room-features i {
    color: #10b981;
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.room-button {
    width: 100%;
    background: var(--hotel-primary);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-button:hover {
    background: #b91c70;
    transform: translateY(-1px);
}

/* Amenities */
.amenities-section {
    margin-top: 4rem;
}

.amenities-card {
    padding: 2rem;
    text-align: center;
}

.amenities-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

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

.amenity {
    text-align: center;
}

.amenity-icon {
    font-size: 2rem;
    color: var(--hotel-primary);
    margin-bottom: 0.5rem;
}

.amenity p {
    color: #d1d5db;
}

/* Schedules */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.schedule-card {
    padding: 2rem;
}

.schedule-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.schedule-icon {
    font-size: 2rem;
    color: var(--hotel-primary);
    margin-right: 1rem;
}

.schedule-title {
    font-size: 2rem;
    font-weight: bold;
    color: #f1f5f9;
}

.schedule-content {
    space-y: 1.5rem;
}

.schedule-item {
    border-left: 4px solid var(--hotel-primary);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.schedule-day {
    font-size: 1.25rem;
    font-weight: bold;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.schedule-time {
    color: #d1d5db;
    margin-bottom: 0.25rem;
}

/* Availability */
.availability-section {
    margin-top: 3rem;
}

.availability-card {
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.availability-icon {
    font-size: 3rem;
    color: var(--hotel-primary);
    margin-bottom: 1rem;
}

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

.availability-text {
    color: #d1d5db;
}

/* Promotions */
.promotion-card {
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.promotion-header {
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.promotion-star {
    font-size: 4rem;
    color: #fbbf24;
    animation: pulse 2s infinite;
}

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

.promotion-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f1f5f9;
    margin: 0;
}

.promotion-badge {
    background: var(--hotel-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(220, 38, 127, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 4px 15px rgba(220, 38, 127, 0.3); }
    to { box-shadow: 0 8px 25px rgba(220, 38, 127, 0.6); }
}

.promotion-content {
    text-align: left;
}

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

.promotion-column {
    background: rgba(15, 15, 15, 0.5);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(220, 38, 127, 0.2);
}

.promotion-subtitle {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--hotel-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promotion-list {
    list-style: none;
    padding: 0;
}

.promotion-list li {
    display: flex;
    align-items: center;
    color: #d1d5db;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(220, 38, 127, 0.1);
}

.promotion-list li:last-child {
    border-bottom: none;
}

.promotion-list i {
    color: var(--hotel-primary);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.promotion-payment {
    background: rgba(15, 15, 15, 0.7);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(234, 179, 8, 0.3);
    text-align: center;
}

.payment-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--hotel-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-info p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin: 0;
}

.payment-info strong {
    color: var(--hotel-secondary);
}

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

.promo-card {
    padding: 2rem;
    text-align: center;
}

.promo-icon {
    font-size: 3rem;
    color: var(--hotel-primary);
    margin-bottom: 1rem;
}

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

.promo-description {
    color: #d1d5db;
}

/* Consumables */
.consumables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.consumable-category {
    padding: 2rem;
    text-align: center;
}

.category-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f1f5f9;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.category-icon {
    font-size: 1.5rem;
    color: var(--hotel-primary);
}

.consumable-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.consumable-list li {
    color: #d1d5db;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(220, 38, 127, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.consumable-list li:last-child {
    border-bottom: none;
}

.consumable-list li:hover {
    color: var(--hotel-secondary);
    padding-left: 1rem;
}

.consumable-list li::before {
    content: "•";
    color: var(--hotel-primary);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consumable-list li:hover::before {
    opacity: 1;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info {
    padding: 2rem;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--hotel-primary);
    margin-right: 1rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f1f5f9;
}

.contact-details {
    space-y: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    font-size: 1.2rem;
    color: var(--hotel-primary);
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #f1f5f9;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #d1d5db;
}

/* Social Contact */
.social-contact {
    padding: 2rem;
}

.social-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f1f5f9;
    margin-bottom: 2rem;
    text-align: center;
}

.social-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(220, 38, 127, 0.2);
    transition: all 0.3s ease;
}

.social-item:hover {
    border-color: rgba(220, 38, 127, 0.5);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.whatsapp-color {
    color: #25D366;
}

.instagram-color {
    color: #E4405F;
}

.social-text {
    flex: 1;
}

.social-text h4 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.social-text p {
    color: #d1d5db;
}

.social-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.whatsapp-button {
    background: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background: #1EA952;
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

.instagram-button {
    background: #E4405F;
    color: white;
}

.instagram-button:hover {
    background: #C13584;
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-2px);
    text-decoration: none;
    color: white;
}

.whatsapp-floating {
    background: #25D366;
    animation-delay: 0s;
}

.whatsapp-floating:hover {
    background: #1EA952;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.instagram-floating {
    background: linear-gradient(45deg, #E4405F, #C13584, #833AB4);
    animation-delay: 0.5s;
}

.instagram-floating:hover {
    background: linear-gradient(45deg, #C13584, #833AB4, #5851DB);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Footer */
.footer {
    background: #0f0f0f;
    border-top: 1px solid rgba(220, 38, 127, 0.3);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    background: var(--hotel-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #d1d5db;
}

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

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

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

.footer-links a:hover {
    color: var(--hotel-secondary);
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--hotel-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(220, 38, 127, 0.2);
    color: #9ca3af;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--hotel-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #b91c70;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(220, 38, 127, 0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .promotion-details {
        grid-template-columns: 1fr;
    }

    .promotion-column {
        margin-bottom: 1rem;
    }

    .consumables-grid {
        grid-template-columns: 1fr;
    }

    .social-content {
        gap: 1rem;
    }

    .social-item {
        flex-direction: column;
        text-align: center;
    }

    .social-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .floating-buttons {
        bottom: 4rem;
        right: 1rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero-video {
        height: 120vh;
        object-position: center center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.15);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 0.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .room-card {
        margin-bottom: 1rem;
    }
}

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

.section-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--hotel-primary);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .section-card {
        border-width: 2px;
    }
    
    .nav-link:hover {
        background: rgba(220, 38, 127, 0.3);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
