/*
Theme Name: Autofény Szekszárd
Description: Egyedi WordPress téma az Autofény Szekszárd autófestő vállalkozáshoz. Modern, letisztult one-page dizájn.
Version: 1.0
Author: Custom Development
*/

:root {
    --primary-color: #2e8e91;
    --secondary-color: #f47b03;
    --text-color: #2e8e91;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Main content */
main {
    margin-top: 120px;
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e06a02;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 123, 3, 0.3);
}

.btn-outline {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e06a02 100%);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #e06a02 0%, var(--secondary-color) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 123, 3, 0.3);
}

/* Tablet adjustments */
@media (max-width: 1200px) and (min-width: 769px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 4rem 0;
    }
}

/* Responsive base adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    main {
        margin-top: 110px;
    }

    section {
        padding: 3rem 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Touch-friendly elements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .btn-outline:hover {
        transform: none;
    }
}