/* 
* Téli Berek Vendégház - Custom CSS
* A modern, responsive design for a guest house website
*/

/* ===== VARIABLES ===== */
:root {
    --primary-color: #4b6f4d;        /* Forest green */
    --primary-dark: #3c5c3e;         /* Darker green */
    --primary-light: #6a8f6d;        /* Lighter green */
    --secondary-color: #d0a85c;      /* Gold */
    --secondary-light: #e4c78d;      /* Light gold */
    --text-color: #333333;           /* Dark gray for text */
    --text-light: #666666;           /* Lighter gray for text */
    --background-light: #f8f9fa;     /* Light background */
    --background-dark: #212529;      /* Dark background */
    --border-radius: 8px;            /* Border radius */
    --transition: all 0.3s ease;     /* Transition */
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* Shadow */
}

/* ===== GENERAL STYLES ===== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--text-color);
}

p {
    color: var(--text-light);
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 30px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, 
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

section {
    padding: 100px 0;
    position: relative;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    color: darkgrey;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -15px;
    left: 0;
}

.text-center .section-heading h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar-scrolled {
    padding: 15px 0;
    background-color: #fff;
}

.navbar-brand {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.navbar-brand span {
    color: var(--primary-color);
}

.navbar .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 5px;
    left: 15px;
    transition: width 0.3s ease;
}

.navbar .navbar-nav .nav-link.active::after,
.navbar .navbar-nav .nav-link:hover::after {
    width: calc(100% - 30px);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler i {
    font-size: 24px;
    color: var(--primary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: url('./assets/Galery/DSC_8318.JPG');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero .lead {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero .quote {
    position: relative;
    padding: 30px 0;
    max-width: 600px;
    margin: 30px auto;
}

.hero .quote i {
    color: var(--secondary-color);
    font-size: 24px;
    position: absolute;
}

.hero .quote i.fa-quote-left {
    top: 0;
    left: -15px;
}

.hero .quote i.fa-quote-right {
    bottom: 0;
    right: -15px;
}

.hero .quote p {
    font-size: 18px;
    color: white;
    margin: 0;
    padding: 10px 30px;
}

.hero .quote .author {
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.scroll-down a {
    display: inline-block;
    color: white;
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--background-light);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image .experience {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.about-image .experience .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Lora', serif;
}

.about-image .experience .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background-color: white;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(75, 111, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-card .icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.feature-card h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card p {
    margin-bottom: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background-color: var(--background-light);
}

.gallery-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    border-radius: var(--border-radius);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .gallery-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ===== ATTRACTIONS SECTION ===== */
.attractions-section {
    background-color: white;
}

.attractions-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.attractions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.attractions-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.attractions-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--text-light);
}

.attractions-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background-color: var(--background-light);
}

.testimonial-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-item .rating {
    margin-bottom: 20px;
}

.testimonial-item .rating i {
    color: var(--secondary-color);
    margin-right: 3px;
}

.testimonial-item .quote {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-item h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-item .position {
    font-size: 14px;
    color: var(--text-light);
}

.carousel-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    opacity: 1;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background-image: url('./assets/Galery/DSC_1172.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
}

.pricing-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.pricing-section .container {
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--box-shadow);
}

.pricing-card h3 {
    color: var(--secondary-color);
    font-size: 28px;
}

.pricing-card p {
    color: white;
}

.pricing-features {
    margin: 30px 0;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pricing-features .feature i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
}

.pricing-discount {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
}

.pricing-discount p {
    color: white;
}

.pricing-discount h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: white;
}

.cta-section h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.cta-section .btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
}

.cta-section .btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--background-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-heading {
    color: white;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
    display: flex;
    gap: 15px;
}

.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons li a:hover {
    background-color: var(--primary-color);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    margin-bottom: 20px;
}

.contact-info li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 50px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--secondary-color);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .about-image .experience {
        left: 0;
    }
    
    .pricing-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        height: 70vh;
        min-height: 600px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .lead {
        font-size: 18px;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .testimonial-item {
        padding: 30px;
    }
    
    .footer-heading {
        margin-top: 30px;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 15px;
    }
    .package-image {
        height: 250px;
    }
    
    .package-content {
        padding: 25px 20px;
    }
    
    .seasonal-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
}

@media (max-width: 575px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero .quote {
        padding: 20px 0;
    }
    
    .hero .quote p {
        font-size: 16px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
    }
}

/* Experiences Section Styles */
.experiences-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4b6f4d;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #4b6f4d, #d0a85c);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.experience-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.experience-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-image {
    height: 220px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-item:hover .experience-image img {
    transform: scale(1.1);
}

.experience-content {
    padding: 30px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4b6f4d, #6a8f6d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 30px;
    box-shadow: 0 5px 15px rgba(75, 111, 77, 0.3);
}

.icon-wrapper i {
    color: white;
    font-size: 24px;
}

.experience-content h3 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.experience-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .experiences-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experiences-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
    }

    .package-image {
        height: 300px;
        border-radius: 15px 15px 0 0;
    }
    
    .package-content {
        padding: 30px;
    }
    
    .package-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .experiences-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .experience-image {
        height: 180px;
    }
    
    .experience-content {
        padding: 25px 20px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        left: 20px;
    }
    
    .icon-wrapper i {
        font-size: 20px;
    }
    
    .experience-content h3 {
        font-size: 20px;
    }
}

/* Package Highlight Section Styles */
.package-highlight-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.package-highlight-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.seasonal-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.package-image {
    height: 100%;
    position: relative;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(0,0,0,0));
}

.package-content {
    padding: 40px;
}

.package-content h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.package-content .lead {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.package-features ul {
    list-style: none;
    padding-left: 0;
}

.package-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.package-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
}
