/* Rosen Shingle Creek - Sophisticated Resort Styles */

/* Color Palette - Natural Elegance */
:root {
    --rosen-burgundy: #8B1538;
    --rosen-gold: #D4AF37;
    --spanish-brown: #8B4513;
    --creek-green: #4A5F3A;
    --sand: #F4E8D0;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-dark: #1A1A1A;
}

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

body {
    font-family: 'Palatino', 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.section-label {
    display: inline-block;
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rosen-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.section-title {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

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

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

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

.lead.white {
    color: rgba(255, 255, 255, 0.9);
}

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

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1.5rem 0;
}

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

.logo h1 {
    font-family: 'Arial', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--rosen-burgundy);
    letter-spacing: 2px;
}

.logo span {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--dark-gray);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--rosen-gold);
}

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

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

/* Hero Section */
.hero {
    margin-top: 85px;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background: linear-gradient(rgba(139, 21, 56, 0.4), rgba(139, 21, 56, 0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23F4E8D0" width="1920" height="1080"/><path fill="%238B1538" opacity="0.1" d="M0 0h1920v1080H0z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    animation: fadeInUp 1.5s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

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

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

.hero-cta:hover {
    background: var(--white);
    color: var(--rosen-burgundy);
    transform: translateY(-2px);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--rosen-gold);
    transform: scale(1.2);
}

/* Quick Stats Section */
.quick-stats {
    background: var(--rosen-burgundy);
    padding: 3rem 0;
}

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

.stat {
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: var(--rosen-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 5rem 0;
}

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

.awards-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.award-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.award-item p {
    font-size: 0.875rem;
    color: var(--dark-gray);
    line-height: 1.4;
}

.about-gallery {
    display: grid;
    gap: 1rem;
}

.gallery-main {
    height: 400px;
    background: var(--sand);
    border-radius: 5px;
}

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

.gallery-item {
    height: 150px;
    background: var(--cream);
    border-radius: 5px;
}

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

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

.rooms-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.room-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.room-image-large {
    height: 400px;
    background: var(--sand);
    border-radius: 5px;
}

.room-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-details h3 {
    font-size: 2rem;
    color: var(--rosen-burgundy);
    margin-bottom: 0.5rem;
}

.room-size {
    color: var(--rosen-gold);
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.room-amenities {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.room-amenities span {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    background: var(--cream);
    color: var(--dark-gray);
    border-radius: 20px;
}

.room-cta {
    background: var(--rosen-burgundy);
    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(--rosen-gold);
}

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

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

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

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

.suite-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--rosen-burgundy);
}

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

/* Golf Section */
.golf {
    padding: 0;
    background: var(--creek-green);
}

.golf-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.golf-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.golf-feature h4 {
    color: var(--rosen-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.golf-feature ul {
    list-style: none;
}

.golf-feature li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.golf-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--rosen-gold);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--white);
    color: var(--creek-green);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--creek-green);
}

.golf-image {
    background: linear-gradient(rgba(74, 95, 58, 0.3), rgba(74, 95, 58, 0.3)),
                var(--sand);
}

/* Spa Section */
.spa {
    padding: 5rem 0;
}

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

.spa-image-gallery {
    position: relative;
}

.spa-main-image {
    height: 500px;
    background: var(--cream);
    border-radius: 5px;
}

.spa-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--rosen-gold);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    border-radius: 50%;
}

.spa-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 600;
}

.spa-badge p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.highlight h4 {
    color: var(--rosen-burgundy);
    margin-bottom: 1rem;
}

.highlight ul {
    list-style: none;
}

.highlight li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.highlight li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rosen-gold);
}

.spa-cta {
    background: var(--rosen-burgundy);
    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(--rosen-gold);
}

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

.dining-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-restaurant {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.restaurant-image {
    height: 250px;
    background: var(--sand);
}

.restaurant-details {
    padding: 2rem;
}

.restaurant-details h3 {
    font-size: 1.75rem;
    color: var(--rosen-burgundy);
    margin-bottom: 0.5rem;
}

.cuisine-type {
    color: var(--rosen-gold);
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 1rem;
}

.restaurant-details p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.restaurant-accolades {
    display: flex;
    gap: 1rem;
}

.restaurant-accolades span {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--cream);
    color: var(--rosen-burgundy);
    border-radius: 20px;
    font-weight: 600;
}

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

.dining-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.dining-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dining-item h4 {
    color: var(--rosen-burgundy);
    margin-bottom: 0.5rem;
}

.dining-item span {
    color: var(--rosen-gold);
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* Meetings Section */
.meetings {
    padding: 5rem 0;
    background: var(--rosen-burgundy);
    color: var(--white);
}

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

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

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

.meeting-stat {
    text-align: center;
}

.meeting-stat h3 {
    font-size: 2.5rem;
    color: var(--rosen-gold);
    margin-bottom: 0.5rem;
}

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

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

.meetings-cta:hover {
    background: var(--white);
    color: var(--rosen-burgundy);
}

.meetings-image {
    height: 500px;
    background: linear-gradient(rgba(139, 21, 56, 0.5), rgba(139, 21, 56, 0.5)),
                var(--sand);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay {
    text-align: center;
    padding: 2rem;
}

.image-overlay p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.image-overlay span {
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-wrapper {
    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-group h4 {
    color: var(--rosen-burgundy);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.detail-group address,
.detail-group p {
    color: var(--dark-gray);
    font-style: normal;
    line-height: 1.8;
}

.detail-group a {
    color: var(--rosen-gold);
    text-decoration: none;
}

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

.rosen-benefits {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: 5px;
}

.rosen-benefits h4 {
    color: var(--rosen-burgundy);
    margin-bottom: 1rem;
}

.rosen-benefits ul {
    list-style: none;
}

.rosen-benefits li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    padding-left: 1.5rem;
    position: relative;
}

.rosen-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--creek-green);
    font-weight: bold;
}

/* Form Styles */
.reservation-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 5px;
}

.reservation-form h3 {
    color: var(--rosen-burgundy);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--rosen-gold);
}

.submit-button {
    width: 100%;
    background: var(--rosen-burgundy);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--rosen-gold);
}

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

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

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

.footer-brand h3 {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--rosen-gold);
}

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

.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;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

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

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

.link-group h5 {
    color: var(--rosen-gold);
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

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

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

.link-group 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;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content,
    .spa-content,
    .meetings-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .room-featured {
        grid-template-columns: 1fr;
    }
    
    .suites-grid,
    .dining-grid {
        grid-template-columns: 1fr;
    }
    
    .dining-featured {
        grid-template-columns: 1fr;
    }
    
    .golf-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}