/* ==============================================
   Jet Woudenberg Pedicure - Simple Stylesheet
   Easy to customize - change colors, fonts, etc.
   ============================================== */

/* === BASIC RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === MAIN COLORS - EDIT HERE === */
:root {
    --primary-green: #026401;
    --light-green: #aedfc9;
    --dark-green: #014101;
    --header-bg: #aedfc9;
    --text-dark: #332525;
    --text-body: #026401;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --footer-bg: #333333;
}

/* === BASIC STYLES === */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background-color: #0e6c0e;
}

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

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

h1, h2, h3, h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

a {
    color: var(--primary-green);
    text-decoration: none;
}

a:hover {
    color: var(--dark-green);
}

/* === HEADER === */
.site-header {
    background-color: var(--white);
}

.top-bar {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 10px 0;
}

.top-info {
    text-align: center;
}

.business-title {
    font-size: 1.2em;
    color: var(--white);
    margin: 0;
}

.subtitle {
    color: var(--white);
    font-size: 0.9em;
}

.header-main {
    background-color: var(--header-bg);
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    max-height: 80px;
}

/* === NAVIGATION === */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--primary-green);
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--dark-green);
}

/* === HEADER INFO BOXES === */
.header-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.info-box {
    background: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    min-width: 150px;
}

.info-box strong {
    display: block;
    color: var(--primary-green);
    font-size: 0.9em;
}

.info-box p {
    font-size: 0.85em;
    margin: 5px 0 0 0;
}

/* === MAIN CONTENT === */
main {
    background-color: var(--white);
    padding: 40px 0;
}

/* === HERO INTRO === */
.hero-intro {
    text-align: center;
    padding: 30px 20px 10px;
    max-width: 700px;
    margin: 0 auto 20px;
}

.hero-intro h2 {
    font-size: 2.2em;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.hero-intro p {
    font-size: 1.15em;
    color: #555;
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 20px 0;
}

/* Two-column row layout (like original site) */
.content-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

.content-row--full {
    grid-template-columns: 1fr;
}

/* === PROFILE CARD === */
.profile-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
}

.profile-info {
    padding: 20px;
}

.profile-info h2 {
    margin-bottom: 10px;
}

.tag {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    display: inline-block;
    margin-bottom: 15px;
}

/* === INFO SECTIONS === */
.info-section {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.btn-cta {
    margin-top: 15px;
    display: inline-block;
}

.info-section h3 {
    color: var(--primary-green);
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-section h3:first-child {
    margin-top: 0;
}

.location-image {
    margin-top: 20px;
    border-radius: 8px;
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Location section - side-by-side layout */
.location-section {
    grid-column: 1 / -1;
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 15px;
}

.location-text p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.location-address {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--primary-green);
    margin-top: 15px !important;
}

.location-image-wrap {
    overflow: hidden;
    border-radius: 8px;
}

.location-image-wrap .location-image {
    margin-top: 0;
    border-radius: 8px;
    max-height: 300px;
}

/* Hours list */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px;
}

.hours-list li {
    padding: 6px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* === TARIEVEN SECTION === */
.tarieven-section {
    background-color: var(--light-green);
    padding: 50px 0;
}

.tarieven-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 30px;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.price-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.price-item h4 {
    color: var(--primary-green);
    font-size: 1.3em;
}

.price {
    font-size: 2em;
    color: var(--primary-green);
    font-weight: bold;
    margin: 15px 0;
}

.description {
    color: #666;
}

.note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95em;
}

/* === FOOTER === */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 40px 0 0 0;
}

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-column p {
    color: #aaaaaa;
    line-height: 1.8;
}

.footer-badge {
    max-width: 300px;
    border-radius: 5px;
}

.footer-bottom {
    background-color: #222222;
    padding: 20px 0;
    text-align: center;
    color: #aaaaaa;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .header-main .container {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-info {
        flex-direction: column;
        width: 100%;
    }
    
    .info-box {
        width: 100%;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-row {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .location-image-wrap {
        order: -1;
    }
    
    .hero-intro h2 {
        font-size: 1.7em;
    }
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/* === PAGE HEADER === */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 40px;
}

.page-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1em;
    color: #666;
}

/* === PRICING TABLE (Tarieven Page) === */
.pricing-table-section {
    max-width: 700px;
    margin: 40px auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.pricing-table thead tr {
    background: var(--primary-green);
    color: var(--white);
}

.pricing-table th {
    padding: 16px 24px;
    text-align: left;
    font-size: 1.1em;
}

.pricing-table th:last-child {
    text-align: right;
}

.pricing-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #eee;
    font-size: 1.05em;
}

.pricing-table .price-cell {
    text-align: right;
    font-weight: bold;
    white-space: nowrap;
    color: var(--primary-green);
    font-size: 1.1em;
}

.pricing-table tbody tr:hover {
    background-color: #f0f7f0;
}

.pricing-table .sub-row td {
    padding-left: 48px;
    font-style: italic;
    color: #666;
    font-size: 0.95em;
}

.pricing-table .sub-row .price-cell {
    font-size: 1em;
    color: #666;
}

.pricing-table .highlight-row {
    background-color: var(--light-green);
}

.pricing-table .table-note {
    display: block;
    font-size: 0.85em;
    color: #888;
    margin-top: 2px;
}

.no-show-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
}

.no-show-notice h4 {
    margin: 0 0 8px 0;
    color: #856404;
}

.no-show-notice p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

/* === PRICING CARDS (legacy - kept for reference) === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.price-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.price-card.featured {
    border-color: var(--primary-green);
    box-shadow: 0 5px 20px rgba(2,100,1,0.2);
}

.price-card-header {
    background: var(--light-green);
    padding: 25px;
    text-align: center;
    position: relative;
}

.price-card.featured .price-card-header {
    background: var(--primary-green);
    color: var(--white);
}

.price-card.featured .price-card-header h3 {
    color: var(--white);
}

.price-card-header h3 {
    margin: 0;
    font-size: 1.5em;
}

.badge {
    display: inline-block;
    background: #ffd700;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    margin-top: 10px;
}

.price-card-body {
    padding: 30px;
}

.price-card-body .price {
    font-size: 2.5em;
    color: var(--primary-green);
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px 0;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.price-features li:last-child {
    border-bottom: none;
}

.duration {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-top: 20px;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-info .info-section {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.pricing-info h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.pricing-info p {
    margin: 10px 0;
}

.cta-section {
    background: var(--primary-green);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h3 {
    color: var(--white);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-green);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--light-green);
    transform: scale(1.05);
}

/* === CONTACT PAGE === */
.contact-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-compact {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.contact-card-compact h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1em;
}

.contact-card-compact p {
    margin: 5px 0;
    font-size: 0.95em;
}

.contact-highlight {
    font-size: 1.3em;
    font-weight: bold;
}

.contact-highlight a {
    color: var(--primary-green);
}

.link-button-small {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    font-size: 0.9em;
    transition: background 0.3s;
}

.link-button-small:hover {
    background: var(--dark-green);
    color: var(--white);
}

.contact-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.contact-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.contact-card p {
    margin: 5px 0;
}

.contact-card a {
    color: var(--text-body);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.large-text {
    font-size: 1.4em;
    font-weight: bold;
}

.small-text {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

.link-button {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background 0.3s;
}

.link-button:hover {
    background: var(--dark-green);
    color: var(--white);
}

/* === CONTACT FORM === */
.contact-form-section {
    position: relative;
}

.form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-card h3 {
    color: var(--primary-green);
    font-size: 1.8em;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

.form-info-box {
    background: #e8f5e9;
    border-left: 4px solid var(--primary-green);
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.form-info-box strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.form-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-info-box li {
    padding: 5px 0;
    color: #2e7d32;
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* === MAP SECTION === */
.map-section {
    margin: 60px 0 40px 0;
}

.map-section h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-note {
    text-align: center;
    margin-top: 15px;
    color: #666;
    font-style: italic;
}

/* === ACTIVE NAV LINK === */
.main-nav a.active {
    color: var(--dark-green);
    font-weight: bold;
    border-bottom: 3px solid var(--primary-green);
}

/* === LOGO LINK === */
.logo a {
    display: block;
}

/* === FOOTER LINKS === */
.footer-column a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* === RESPONSIVE DESIGN - ADDITIONAL === */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h2 {
        font-size: 1.8em;
    }
    
    .price-card-body .price {
        font-size: 2em;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 14px;
        font-size: 0.95em;
    }
    
    .pricing-table .sub-row td {
        padding-left: 28px;
    }
    
    .pricing-table .table-note {
        font-size: 0.8em;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.5em;
    }
}
