/* WLV Subdomain Styles - Completely Independent */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Intro Section */
.intro {
    padding: 120px 0 80px;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
}

/* Header Styles */
header {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    min-height: 80px; /* Ensure consistent header height */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    min-height: 80px; /* Consistent nav height */
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo img {
    height: 75px;
    width: auto;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-center img {
    height: 75px;
    width: auto;
    max-width: 100%; /* Prevent overflow */
    object-fit: contain; /* Maintain aspect ratio */
}

.nav-spacer {
    width: 50px; /* Same width as corner logo to balance the layout */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 100px; /* Account for fixed header - consistent across devices */
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-headshot {
    width: 420px; /* 3x larger */
    height: 420px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    margin-bottom: 1rem;
    border: 3px solid rgba(255,255,255,0.85);
}

.hero-textbox {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    text-align: left;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    max-width: 800px;
}

.hero-textbox h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.hero-textbox p {
    color: #444;
}

@media (max-width: 768px) {
    .hero-headshot {
        width: 220px;
        height: 220px;
    }
    .hero-textbox {
        margin: 0 1rem;
    }
}

.cta-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.about p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.service-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-section:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-section:nth-child(even) .service-image {
    order: 2;
}

.service-section:nth-child(even) .service-content {
    order: 1;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-section:hover .service-image img {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 1.5rem 0 2rem;
    padding-left: 0;
    list-style: none;
}

.service-features li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 1rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

.strikethrough {
    text-decoration: line-through;
    color: #999;
}

.btn-primary {
    display: inline-block;
    background: #667eea;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

/* Specials Section */
.specials {
    padding: 90px 0;
    background: white;
}

.specials-inner {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: start;
}

.specials-logo {
    width: 180px;
    height: auto;
}

.specials-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.deal {
    background: #f8f9ff;
    border: 1px solid #e6e9ff;
    padding: 1rem;
    border-radius: 10px;
}

.btn-accent {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-accent:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.specials-note {
    margin-top: 0.75rem;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form button {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #5a6fd8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    border-radius: 15px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    display: inline;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

.contact-cta {
    margin-top: 2rem;
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.booking h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.book-now-btn {
    display: inline-block;
    background: #ffd700;
    color: black;
    padding: 15px 40px;
    border: 2px solid #ffd700;
    border-radius: 0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: #ffed4e;
    border-color: #ffed4e;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .specials-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .specials-logo {
        margin: 0 auto 1rem;
    }
    .nav-links {
        display: none;
    }
    
    .nav-center img {
        height: 50px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero {
        padding-top: 100px; /* Same as desktop for consistency */
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .service-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .service-section:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-section:nth-child(even) .service-image {
        order: 1;
    }
    
    .service-section:nth-child(even) .service-content {
        order: 2;
    }
    
    .service-image img {
        height: 250px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }
}
