/* Conrad Orlando at Evermore - Beach Resort Luxury Styles */

/* Color Palette - Beach & Modern */
:root {
    --conrad-navy: #003366;
    --conrad-gold: #D4AF37;
    --beach-blue: #4A90E2;
    --sand-beige: #F5E6D3;
    --coral: #FF6B6B;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #495057;
    --text-dark: #212529;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--beach-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-tag.white {
    color: var(--white);
}

.section-title {
    font-size: 2.75rem;
    color: var(--conrad-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-title.white {
    color: var(--white);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.9);
}

.lead {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-symbol {
    width: 45px;
    height: 45px;
    background: var(--conrad-navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--conrad-navy);
    font-weight: 600;
}

.logo-text span {
    display: block;
    font-size: 0.875rem;
    color: var(--beach-blue);
    font-weight: 400;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--beach-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    margin-top: 77px;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--beach-blue) 0%, var(--conrad-navy) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 33, 102, 0.4);
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border-radius: 30px;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    background: var(--conrad-gold);
    color: var(--conrad-navy);
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.hero-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-features {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4rem;
    z-index: 1;
}

.hero-feature {
    text-align: center;
    color: var(--white);
}

.feature-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--beach-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-images {
    position: relative;
    height: 600px;
}

.image-main {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--beach-blue) 0%, var(--conrad-navy) 100%);
    border-radius: 10px;
    position: relative;
}

.image-small {
    position: absolute;
    width: 200px;
    height: 150px;
    background: var(--sand-beige);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-small.top {
    top: -30px;
    right: -30px;
}

.image-small.bottom {
    bottom: -30px;
    left: -30px;
}

/* Beach Section */
.beach {
    padding: 0;
    background: linear-gradient(135deg, var(--beach-blue) 0%, var(--conrad-navy) 100%);
}

.beach-header {
    padding: 5rem 0 3rem;
    text-align: center;
}

.beach-content {
    background: var(--white);
    padding: 4rem 0;
}

.beach-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.beach-feature {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.beach-feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.beach-feature h3 {
    color: var(--conrad-navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.beach-feature p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Accommodations Section */
.accommodations {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.rooms-slider {
    margin-bottom: 3rem;
}

.room-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-image {
    height: 400px;
    background: linear-gradient(135deg, var(--sand-beige) 0%, var(--beach-blue) 100%);
}

.room-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-info h3 {
    font-size: 2rem;
    color: var(--conrad-navy);
    margin-bottom: 1rem;
}

.room-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.room-details span {
    font-size: 0.875rem;
    color: var(--beach-blue);
    padding: 0.25rem 0.75rem;
    background: var(--light-gray);
    border-radius: 20px;
}

.room-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    list-style: none;
    margin: 1.5rem 0;
}

.room-amenities li {
    color: var(--dark-gray);
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.room-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--beach-blue);
    font-weight: bold;
}

.room-cta {
    background: var(--conrad-navy);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.room-cta:hover {
    background: var(--beach-blue);
    transform: translateX(5px);
}

.suite-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.suite-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.suite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.suite-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.suite-image {
    height: 200px;
    background: var(--sand-beige);
}

.suite-card h4 {
    padding: 1.5rem;
    color: var(--conrad-navy);
    font-size: 1.25rem;
}

.suite-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Dining Section */
.dining {
    padding: 5rem 0;
    background: var(--white);
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dining-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dining-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.dining-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dining-image {
    height: 300px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--beach-blue) 100%);
}

.dining-card.featured .dining-image {
    height: 100%;
}

.dining-content {
    padding: 2rem;
}

.dining-content h3 {
    font-size: 1.75rem;
    color: var(--conrad-navy);
    margin-bottom: 0.5rem;
}

.cuisine {
    color: var(--beach-blue);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.dining-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dining-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.dining-badges span {
    font-size: 0.75rem;
    color: var(--white);
    background: var(--conrad-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Spa Section */
.spa {
    padding: 5rem 0;
    background: var(--sand-beige);
}

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

.spa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.spa-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.spa-feature h4 {
    color: var(--conrad-navy);
    margin-bottom: 0.5rem;
}

.spa-feature p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.spa-cta {
    background: var(--conrad-navy);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.spa-cta:hover {
    background: var(--beach-blue);
}

.spa-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 500px;
}

.spa-image {
    background: var(--white);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.spa-image.main {
    grid-row: span 2;
}

/* Amenities Section */
.amenities {
    padding: 5rem 0;
    background: var(--white);
}

.amenities-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.amenity-item {
    text-align: center;
}

.amenity-image {
    height: 200px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.amenity-item:hover .amenity-image {
    transform: scale(1.05);
}

.amenity-item h3 {
    color: var(--conrad-navy);
    margin-bottom: 0.5rem;
}

.amenity-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* Awards Section */
.awards {
    padding: 3rem 0;
    background: var(--conrad-navy);
    color: var(--white);
}

.awards h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.award {
    padding: 1rem;
}

.award-title {
    display: block;
    font-size: 0.875rem;
    color: var(--conrad-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.award-detail {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.detail-item h4 {
    color: var(--conrad-navy);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.detail-item p {
    color: var(--dark-gray);
    line-height: 1.8;
}

.detail-item a {
    color: var(--beach-blue);
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

/* Form Styles */
.booking-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    color: var(--conrad-navy);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--beach-blue);
}

.submit-btn {
    width: 100%;
    background: var(--beach-blue);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.submit-btn:hover {
    background: var(--conrad-navy);
}

/* Footer */
.footer {
    background: var(--conrad-navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-logo .logo-symbol {
    background: var(--conrad-gold);
    color: var(--conrad-navy);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.social-links a:hover {
    background: var(--conrad-gold);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h5 {
    color: var(--conrad-gold);
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-column ul {
    list-style: none;
}

.link-column li {
    margin-bottom: 0.75rem;
}

.link-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-grid,
    .spa-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .beach-features,
    .amenities-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .dining-grid {
        grid-template-columns: 1fr;
    }
    
    .dining-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .room-slide {
        grid-template-columns: 1fr;
    }
    
    .suite-showcase {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}