:root {
    --main-color: #CDAE85;;
    --bg-color: #F5EBDD;
    --font-heading: 'Alkatra', cursive;
    --font-body: 'Abhaya Libre', serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
}

.navbar-brand {
    font-size: 1.8rem !important;
    font-weight: 400 !important;
    color: #CDAE85 !important;
}

.nav-item {font-size: 1.2rem;
    font-weight: 400;
    color: #2E2E2E;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #CDAE85;
}

/* Gombok stílusa - csak .btn-primary, nem .bg-primary */
.btn-primary {
    background-color: transparent !important;
    border: none !important;
    background-image: linear-gradient(90deg, rgb(205, 174, 133) 0%, rgb(150, 126, 95) 100%) !important;
    border-radius: 8px !important;
    padding: 16px 35px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: white !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.btn-primary:hover {
    background-image: linear-gradient(90deg, #967E5F 0%, var(--main-color) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Teljes szélességű gombok esetén is megfelelő padding */
.btn-primary.w-100 {
    padding: 16px 35px !important;
}

.btn-outline-primary {
    color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: white !important;
}

.navbar.bg-primary {
    background-color: #FFFFFF !important;
}

/* Menü linkek stílusa */
.navbar .nav-link {
    color: #2E2E2E !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #CDAE85 !important;
}

.navbar .nav-link.active {
    color: #CDAE85 !important;
}

.bg-light, .bg-white {
    background-color: var(--bg-color) !important;
}

.card {
    background-color: white;
}

.text-primary {
    color: var(--main-color) !important;
}

.border-primary {
    border-color: var(--main-color) !important;
}

.alert-success .bi-check-circle-fill {
    color: var(--main-color);
}

.service-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-color) !important;
}

/* Full Width Header Image */
.header-image-section {
    width: 100%;
    margin: -2rem -15px 0 -15px;
    overflow: hidden;
}

.header-image-full {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    margin: -2rem -15px 4rem -15px;
    background: var(--bg-color);
}

.hero-image-wrapper {
    padding: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    display: block;
}

.hero-content {
    padding: 2rem 2rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    font-size: 1.4rem;
    line-height: 1.4;
    color: #555;
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
}

.hero-cta-button {
    background-color: transparent !important;
    background-image: linear-gradient(90deg, var(--main-color) 0%, #967E5F 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 16px 35px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: white !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
    align-self: flex-start;
}

.hero-cta-button:hover {
    background-image: linear-gradient(90deg, #967E5F 0%, var(--main-color) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Services Section */
.services-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

/* Full Width Service Cards */
.service-card-full {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card-image-wrapper {
    padding: 0;
    overflow: hidden;
}

.service-card-image-wrapper .service-card-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.service-card-body-wrapper {
    display: flex;
    align-items: center;
}

.service-card-body {
    padding: 3rem;
    width: 100%;
}

.service-card-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card-footer .service-card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 0;
}

.service-card-footer .service-card-button {
    background-color: transparent !important;
    background-image: linear-gradient(90deg, var(--main-color) 0%, #967E5F 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 16px 35px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: white !important;
    white-space: nowrap;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.service-card-footer .service-card-button:hover {
    background-image: linear-gradient(90deg, rgb(205, 174, 133) 0%, rgb(150, 126, 95) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .service-card-full {
        margin-bottom: 2rem;
    }
    
    .service-card-image-wrapper .service-card-image {
        min-height: 200px;
    }
    
    .service-card-body {
        padding: 2rem 1.5rem;
    }
    
    .service-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .service-card-footer .service-card-button {
        width: 100%;
    }
}

.service-card-home {
    background: white;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-card-image {
    height: 200px;
    background: var(--main-color);
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.service-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-card-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.service-card-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-card-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
}

.service-card-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 1rem 0;
    text-align: center;
}

.service-card-button {
    width: 100%;
    background-color: transparent !important;
    background-image: linear-gradient(90deg, rgb(205, 174, 133) 0%, rgb(150, 126, 95) 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 16px 35px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: white !important;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.service-card-button:hover {
    background-image: linear-gradient(90deg, rgb(205, 174, 133) 0%, rgb(150, 126, 95) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.travel-images {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    height: 80px;
}

.travel-images img {
    flex: 1;
    object-fit: cover;
    border-radius: 4px;
    opacity: 0.9;
}

/* Comparison Section */
.comparison-section {
    margin: 5rem 0;
    padding: 4rem 0;
    background: var(--bg-color);
}

.comparison-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--main-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: var(--font-heading, 'Alkatra', cursive);
}

.comparison-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(163,133,96,0.15);
    border: 1px solid rgba(163,133,96,0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background:  var(--main-color);
    color: rgb(40, 40, 40);
}

.comparison-table thead th {
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    position: relative;
    word-wrap: break-word;
    hyphens: auto;
}

.comparison-table thead th:first-child {
    text-align: left;
    background: rgba(255,255,255,0.15);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table thead th.highlight {
    background: var(--main-color);
    position: relative;
    box-shadow: inset 0 0 30px rgba(255,255,255,0.2);
}

.comparison-table thead th.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.5);
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(163,133,96,0.08);
    transition: background 0.3s;
}

.comparison-table tbody tr:hover {
    background: rgba(163,133,96,0.03);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody td {
    padding: 1.8rem 1.5rem;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    word-wrap: break-word;
    hyphens: auto;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #555;
    background: rgba(163,133,96,0.03);
    font-size: 1.05rem;
    padding-left: 2rem;
    word-wrap: break-word;
    hyphens: auto;
}

.comparison-table tbody td.highlight {
    background: linear-gradient(135deg, rgba(163,133,96,0.08) 0%, rgba(163,133,96,0.12) 100%);
    font-weight: 500;
    position: relative;
}

.comparison-table tbody td.highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--main-color);
}

.comparison-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    display: block;
    color: rgba(255,255,255,0.95);
}

.comparison-icon.highlight {
    color: rgba(255,255,255,1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.comparison-check {
    color: #28a745;
    font-size: 1.8rem;
    display: inline-block;
}

.comparison-cross {
    color: #dc3545;
    font-size: 1.8rem;
    display: inline-block;
    opacity: 0.6;
}

.comparison-label {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    line-height: 1.4;
    display: block;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    .hero-image-wrapper {
        padding: 0;
        margin-bottom: 2rem;
    }
    .hero-content {
        padding: 1rem;
        text-align: left;
    }
    .hero-text {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .hero-cta-button {
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1.1rem;
        align-self: stretch;
    }
    .service-card-home {
        margin-bottom: 2rem;
    }
    .comparison-section {
        margin: 3rem 0;
        padding: 2rem 0;
    }
    .comparison-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    .comparison-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .comparison-table {
        border-radius: 12px;
        overflow: visible;
    }
    .comparison-table table {
        width: 100%;
    }
    .comparison-table thead th {
        padding: 1.2rem 0.6rem;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    .comparison-table thead th:first-child {
        padding-left: 0.8rem;
        font-size: 0.9rem;
    }
    .comparison-table tbody td {
        padding: 1.3rem 0.6rem;
        font-size: 0.85rem;
    }
    .comparison-table tbody td:first-child {
        padding-left: 0.8rem;
        font-size: 0.9rem;
    }
    .comparison-icon {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    .comparison-label {
        font-size: 0.85rem;
        display: block;
        line-height: 1.3;
    }
    .comparison-check,
    .comparison-cross {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .comparison-section {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }
    .comparison-title {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
    .comparison-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    .comparison-table {
        margin: 0 -15px;
        border-radius: 0;
    }
    .comparison-table table {
        width: 100%;
    }
    .comparison-table thead th {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
        line-height: 1.3;
    }
    .comparison-table thead th:first-child {
        padding-left: 0.6rem;
        font-size: 0.85rem;
    }
    .comparison-table tbody td {
        padding: 1rem 0.5rem;
        font-size: 0.8rem;
    }
    .comparison-table tbody td:first-child {
        padding-left: 0.6rem;
        font-size: 0.85rem;
    }
    .comparison-icon {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    .comparison-label {
        font-size: 0.8rem;
    }
    .comparison-check,
    .comparison-cross {
        font-size: 1.2rem;
    }
}
