/* Tablet CSS for Owners Landing Page (768px-1199px) */

.th-landing-container { 
    max-width: 1200px; 
    margin: 0 auto; 
}

.th-hero-section { 
    background: #fff; 
    padding: 40px 40px 80px; 
    margin-top: 100px;
}

.th-hero-content { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.th-hero-left { 
    text-align: center; 
    margin-bottom: 40px; 
}

.th-hero-title { 
    font-size: 2.5rem; 
    font-weight: 400; 
    margin-bottom: 24px; 
    line-height: 1.2; 
    color: #3b4a6b; 
    font-family: Montserrat, sans-serif; 
}

.th-hero-subtitle { 
    font-size: 1.125rem; 
    font-weight: 400; 
    margin-bottom: 32px; 
    color: #5f6368; 
    line-height: 1.5; 
    font-family: Montserrat, sans-serif; 
}

.th-value-props { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    margin-bottom: 40px; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
}

.th-value-prop { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}

.th-value-icon { 
    width: 20px; 
    height: 20px; 
    color: #34a853; 
    font-weight: 600; 
    font-size: 1.2rem; 
    flex-shrink: 0; 
}

.th-value-text { 
    font-weight: 400; 
    color: #202124; 
    font-size: 1rem; 
    font-family: Montserrat, sans-serif; 
}

.th-booking-section { 
    background: #ffffff; 
    padding: 30px 20px 20px; 
    border-radius: 8px; 
    border: 1px solid #dadce0; 
    box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
    max-width: 1000px; 
    margin: 0 auto; 
}

.th-booking-section:hover { 
    box-shadow: 0 2px 12px rgba(0,0,0,0.15); 
    border-color: #1a73e8; 
}

.th-booking-section h3 { 
    color: #202124; 
    font-size: 1.5rem; 
    font-weight: 500; 
    margin-bottom: 8px; 
    text-align: center; 
    font-family: Montserrat, sans-serif; 
}

.th-booking-subtitle { 
    text-align: center; 
    margin-bottom: 20px; 
    color: #5f6368; 
    font-size: 1rem; 
    font-weight: 400; 
    line-height: 1.5; 
    font-family: Montserrat, sans-serif; 
}

.th-calendar-container { 
    background: #fff; 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid #dadce0; 
    transition: all 0.3s ease; 
    overflow-x: auto; 
    overflow-y: auto; 
}

.th-calendar-container:hover { 
    box-shadow: 0 4px 16px rgba(0,0,0,0.1); 
}

.th-calendar-iframe { 
    border: 0; 
    width: 100%; 
    height: 410px; 
    display: block; 
    min-width: 700px; /* Made just a tiny bit larger to fix the booking buttons being cut off */
}

.th-benefits-section { 
    background: #f8f9fa; 
    padding: 80px 40px 0px 40px; 
    margin: 0; 
}

.th-section-title { 
    color: #202124; 
    font-size: 2.5rem; 
    font-weight: 400; 
    margin-bottom: 60px; 
    text-align: center; 
    line-height: 1.2; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
    font-family: Montserrat, sans-serif; 
}

.th-benefits-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.th-benefit-card { 
    background: #ffffff; 
    padding: 40px 32px 32px; 
    border-radius: 8px; 
    border: 1px solid #dadce0; 
    transition: all 0.2s ease; 
}

.th-benefit-card:hover { 
    box-shadow: 0 2px 12px rgba(0,0,0,0.15); 
    border-color: #1a73e8; 
}

.th-benefit-icon { 
    font-size: 2.5rem; 
    margin-bottom: 24px; 
}

.th-benefit-title { 
    font-size: 1.75rem; 
    font-weight: 500; 
    color: #202124; 
    margin-bottom: 12px; 
    font-family: Montserrat, sans-serif; 
}

.th-benefit-description { 
    color: #5f6368; 
    font-size: 1rem; 
    line-height: 1.5; 
    font-family: Montserrat, sans-serif; 
}

.th-cta-section { 
    text-align: center; 
    padding: 80px 40px; 
    background: #f8f9fa; 
    margin: 0 0 80px 0; 
    transform: translateY(-20px); 
}

.th-button { 
    display: inline-block; 
    padding: 18px 50px; 
    background: transparent; 
    color: #202124; 
    border: 2px solid #dadce0; 
    border-radius: 0; 
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 500; 
    transition: all 0.3s ease; 
    font-family: Montserrat, sans-serif; 
    font-size: 0.875rem; 
    max-width: 300px; 
}

.th-button:hover { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 182, 193, 0.15), rgba(135, 206, 250, 0.1), rgba(255, 255, 255, 0.95)); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 
    text-decoration: none; 
    color: #202124; 
} 