/* ===== VEGAS PLAZA WEBSITE STYLES ===== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #333;
}

h4 {
    font-size: 1.25rem;
    color: #444;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-menu li a {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* ===== HEADERS ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                linear-gradient(135deg, #8B0000 0%, #DAA520 50%, #1a1a1a 100%);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #f5f5f5;
    font-weight: 300;
}

.page-header {
    background: linear-gradient(135deg, #2c1810 0%, #1a1a1a 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #d4af37;
    font-weight: 400;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a1a;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #b8941f 0%, #a08218 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.cta-button.secondary:hover {
    background-color: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-button.extra-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

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

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.intro-section {
    background-color: #f8f9fa;
    text-align: center;
}

.intro-section h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* ===== GRIDS ===== */
.events-grid,
.features-grid,
.facts-grid,
.residency-grid,
.category-grid,
.tips-grid,
.advantages-grid,
.services-grid,
.packages-grid,
.bars-grid,
.casual-dining-grid,
.experiences-grid,
.rates-grid,
.benefits-grid,
.downtown-features,
.walking-attractions,
.policies-grid,
.departments-grid,
.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* ===== CARDS ===== */
.event-card,
.feature,
.residency-card,
.category-card,
.tip,
.advantage-card,
.service-card,
.package-card,
.room-card,
.rate-card,
.benefit-card,
.feature-card,
.restaurant-card,
.bar-card,
.casual-card,
.experience-card,
.department-card,
.emergency-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
}

.event-card:hover,
.feature:hover,
.residency-card:hover,
.category-card:hover,
.tip:hover,
.advantage-card:hover,
.service-card:hover,
.package-card:hover,
.room-card:hover,
.rate-card:hover,
.benefit-card:hover,
.feature-card:hover,
.restaurant-card:hover,
.bar-card:hover,
.casual-card:hover,
.experience-card:hover,
.department-card:hover,
.emergency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-card h3,
.feature h3,
.residency-card h3,
.category-card h3,
.tip h3,
.advantage-card h3,
.service-card h3,
.package-card h3,
.room-card h3,
.rate-card h3,
.benefit-card h3,
.feature-card h3,
.restaurant-card h3,
.bar-card h3,
.casual-card h3,
.experience-card h3,
.department-card h3,
.emergency-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

/* Featured Cards */
.festival-card.featured,
.restaurant-featured,
.rate-card.featured,
.package-card.featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
    color: #fff;
    border-left: 4px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.festival-card.featured::before,
.restaurant-featured::before,
.rate-card.featured::before,
.package-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-top: 50px solid #d4af37;
}

.festival-card.featured h3,
.restaurant-featured h3,
.rate-card.featured h3,
.package-card.featured h3 {
    color: #d4af37;
}

.popular-badge,
.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #d4af37;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== FORMS ===== */
.booking-form-container,
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ===== TABLES ===== */
.comparison-table,
.parking-table {
    margin-top: 2rem;
    overflow-x: auto;
}

.comparison-table table,
.parking-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td,
.parking-table th,
.parking-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th,
.parking-table th {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
    color: #fff;
    font-weight: 600;
}

.savings {
    color: #d4af37;
    font-weight: 600;
}

/* ===== LISTS ===== */
.shows-list,
.attractions-list,
.distance-list {
    list-style: none;
    padding: 0;
}

.shows-list li,
.attractions-list li,
.distance-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.shows-list li:last-child,
.attractions-list li:last-child,
.distance-list li:last-child {
    border-bottom: none;
}

.attraction-name,
.destination {
    font-weight: 500;
    color: #1a1a1a;
}

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

/* ===== SPECIAL SECTIONS ===== */
.plaza-intro {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
    color: #fff;
    padding: 4rem 0;
}

.plaza-intro h2,
.plaza-intro h3 {
    color: #d4af37;
}

.quick-facts {
    background-color: #f8f9fa;
    text-align: center;
}

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

.fact {
    text-align: center;
}

.fact-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.fact-label {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* ===== PRICING ===== */
.rate-price,
.package-price {
    text-align: center;
    margin-top: 1.5rem;
}

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

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0.25rem;
}

.price-period {
    font-size: 1rem;
    color: #666;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.sale-price {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 0.25rem;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: linear-gradient(135deg, #8B0000 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #f5f5f5;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c1810 100%);
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.footer-section ul li {
    padding: 0.25rem 0;
}

.footer-section ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* ===== SPECIAL COMPONENTS ===== */
.month-section {
    margin-bottom: 3rem;
}

.month-section h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
}

.offers-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #d4af37;
}

.offer-date {
    background: #d4af37;
    color: #1a1a1a;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.offer-content {
    flex: 1;
}

.offer-price {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== FAQ STYLES ===== */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #d4af37;
}

.faq-item h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== CONTACT STYLES ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-primary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-detail a {
    color: #d4af37;
}

.contact-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Department cards */
.dept-phone {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dept-phone a {
    color: #d4af37;
}

.dept-email {
    margin-bottom: 0.5rem;
}

.dept-email a {
    color: #d4af37;
}

.dept-hours {
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.dept-services {
    color: #555;
    line-height: 1.6;
}

/* Emergency info */
.emergency-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-number a {
    color: #d4af37;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .events-grid,
    .features-grid,
    .facts-grid,
    .residency-grid,
    .category-grid,
    .tips-grid,
    .advantages-grid,
    .services-grid,
    .packages-grid,
    .bars-grid,
    .casual-dining-grid,
    .experiences-grid,
    .rates-grid,
    .benefits-grid,
    .downtown-features,
    .walking-attractions,
    .policies-grid,
    .departments-grid,
    .emergency-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .room-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .offer-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-button.large,
    .cta-button.extra-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .event-card,
    .feature,
    .residency-card,
    .category-card,
    .tip,
    .advantage-card,
    .service-card,
    .package-card,
    .room-card,
    .rate-card,
    .benefit-card,
    .feature-card,
    .restaurant-card,
    .bar-card,
    .casual-card,
    .experience-card,
    .department-card,
    .emergency-card {
        padding: 1.5rem;
    }
    
    .booking-form-container,
    .contact-form {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

/* High contrast support */
@media (prefers-contrast: high) {
    .cta-button.primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .hero {
        background: #000;
        color: #fff;
    }
}