/* ===== CSS Variables - Paletă crem, bej, alb, auriu cald ===== */
:root {
    --cream: #faf8f3;
    --beige: #e8e3d8;
    --beige-light: #f5f2eb;
    --beige-dark: #d4cdbc;
    --white: #ffffff;
    --gold: #d4af37;
    --gold-light: #e5c158;
    --gold-dark: #b8941f;
    --text-dark: #3a3a3a;
    --text-medium: #5a5a5a;
    --text-light: #7a7a7a;
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.12);
    --shadow-strong: rgba(0, 0, 0, 0.15);
    
    --font-heading: 'Great Vibes', cursive;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    --transition: all 0.3s ease;
    --spacing-section: 100px;
}

/* ===== Bootstrap Overrides & Base Styles ===== */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
    
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-bottom: 1px solid rgba(232, 227, 216, 0.3);
    padding: 1.2rem 0;
}

.navbar.scrolled {
    background: rgba(250, 248, 243, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(232, 227, 216, 0.5);
}

.logo-img {
    height: 65px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.navbar-nav {
    gap: 0;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    font-family: var(--font-accent);
    font-style: italic;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover {
    color: var(--text-dark);
}

.navbar-nav .nav-link:hover::before {
    width: calc(100% - 3rem);
}

.navbar-nav .nav-link.active {
    color: var(--text-dark);
}

.navbar-nav .nav-link.active::before {
    width: calc(100% - 3rem);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-dark);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(250, 248, 243, 0.65) 0%,
        rgba(250, 248, 243, 0.45) 50%,
        rgba(250, 248, 243, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    /* animation: fadeInUp 1s ease; */
    max-width: 800px;
    padding: 2.5rem;
    /* background: rgba(250, 248, 243, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    padding-top: 100px;
    line-height: 1.3;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 2px 2px 2px rgb(35, 32, 22);
    /* text-shadow: 2px 2px 8px rgba(250, 248, 243, 0.8),
                 0 0 20px rgba(250, 248, 243, 0.6); */
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 2rem;
    padding: 30px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    font-style: italic;
    background: rgba(250, 248, 243, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /* color: var(--text-dark);
    text-shadow: 1px 1px 6px rgba(250, 248, 243, 0.8),
                 0 0 15px rgba(250, 248, 243, 0.5); */
    color: var(--white);
    text-shadow: 2px 2px 2px rgb(35, 32, 22);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ===== Quick Navigation Section ===== */
.quick-nav {
    background: var(--white);
    padding: 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.quick-nav-card {
    display: block;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow-soft);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.quick-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--gold);
    text-decoration: none;
    color: inherit;
}

.quick-nav-card:hover::before {
    transform: scaleX(1);
}

.quick-nav-icon {
    margin-bottom: 1.5rem;
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.quick-nav-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.quick-nav-card:hover .quick-nav-icon {
    transform: scale(1.05);
}

.quick-nav-card:hover .quick-nav-image {
    transform: scale(1.1);
}

.quick-nav-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.quick-nav-card:hover .quick-nav-title {
    color: var(--gold-dark);
}

.quick-nav-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.quick-nav-link {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    font-family: var(--font-accent);
    font-style: italic;
}

.quick-nav-card:hover .quick-nav-link {
    transform: translateX(5px);
    color: var(--gold-dark);
}

/* ===== Buttons (Bootstrap Override) ===== */
.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
    background: transparent;
    border-color: var(--gold);
    color: var(--text-dark);
}

/* ===== Section CTA ===== */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
}

.content-text .section-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: left;
}

/* ===== Sections ===== */
.section {
    padding: var(--spacing-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.title-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    margin: 0 auto 1.5rem;
    border-radius: 1px;
}

.section-subtitle {
    color: var(--text-medium);
    font-size: 1.3rem;
    font-family: var(--font-accent);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===== Content with Image Layout ===== */
.content-with-image {
    margin: 3rem 0;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-text p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.9;
    margin: 0;
}

.content-text .lead {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.8;
    font-family: var(--font-accent);
}

.content-text .highlight {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    font-family: var(--font-accent);
    margin-top: 1rem;
}

.content-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-medium);
    transition: var(--transition);
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow-strong);
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: var(--transition);
}

.content-image:hover .section-image {
    transform: scale(1.05);
}

/* ===== About Section ===== */
.about {
    background: var(--white);
}

/* ===== Cazare Section ===== */
.cazare {
    background: var(--beige-light);
}

.cazare .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

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

.cazare .card-img-top {
    transition: transform 0.3s ease;
}

.cazare .card:hover .card-img-top {
    transform: scale(1.05);
}

/* ===== Price Badge ===== */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    min-width: 80px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.cazare-card:hover .price-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-body);
    letter-spacing: -0.5px;
}

.price-currency {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.95;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-period {
    font-size: 0.65rem;
    opacity: 0.9;
    margin-top: 1px;
    font-style: italic;
}

.about-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-text {
    text-align: center;
}

.about-text .lead {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: var(--font-accent);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-text .highlight {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    font-family: var(--font-accent);
    margin-top: 2rem;
}

.features-grid {
    margin-top: 4rem;
}

.feature-item {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow-soft);
    transition: var(--transition);
    border-top: 3px solid var(--gold);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== Lore Section ===== */
.lore {
    background: var(--beige-light);
}

.lore-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-text .lead {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 400;
    font-family: var(--font-accent);
    font-style: italic;
}

.content-text .highlight {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

/* ===== Location Section ===== */
.location {
    background: var(--white);
}

/* ===== Spaces Section ===== */
.spaces {
    background: var(--beige-light);
}

.cats-section {
    background: var(--cream);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
    text-align: center;
    border: 2px solid var(--beige);
}

.cats-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.cats-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cats-section p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ===== Events Section ===== */
.events {
    background: var(--white);
}

/* .events-grid - Bootstrap grid handles layout */

.event-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow-soft);
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--shadow-medium);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.event-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.event-card > p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.event-details {
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.8rem;
    font-size: 1rem;
}

.event-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.event-card ul li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.event-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

.event-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.7;
}

.event-note.highlight {
    color: var(--text-dark);
    font-weight: 500;
    font-style: normal;
}

/* ===== Attractions Section ===== */
.attractions {
    background: var(--beige-light);
}

.parks-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.parks-list li {
    color: var(--text-medium);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.8;
}

.parks-list li::before {
    content: '🏔️';
    position: absolute;
    left: 0;
}

.attractions-grid {
    margin-top: 3rem;
}

.attraction-category {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow-soft);
}

.attraction-category h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.attraction-category p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.attraction-category ul {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.attraction-category ul li {
    color: var(--text-medium);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.attraction-category ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ===== Gallery Section ===== */
.gallery {
    background: var(--white);
}

/* .gallery-grid - Bootstrap grid handles layout */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 5px 20px var(--shadow-soft);
    transition: var(--transition);
    margin-bottom: 1rem;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--gold);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--shadow-medium);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    line-height: 0;
    margin-right: 0.5rem;
    font-family: var(--font-heading);
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    line-height: 0;
    margin-left: 0.5rem;
    font-family: var(--font-heading);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--beige);
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-family: var(--font-accent);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--beige-light);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-content {
    color: var(--text-medium);
    line-height: 1.9;
}

.contact-info-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-info-content h2:first-of-type {
    margin-top: 0;
}

.contact-info-content h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
}

.contact-info-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.contact-info-content a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

.contact-map-wrapper {
    position: sticky;
    top: 120px;
}

.contact-map-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-medium);
    border-radius: 10px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.info-item p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow-soft);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ===== Form Overrides (Bootstrap) ===== */
.form-control,
.form-select {
    padding: 14px 18px;
    border: 2px solid var(--beige);
    border-radius: 8px;
    background: var(--cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control::placeholder,
.form-select::placeholder {
    color: var(--text-light);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.contact-form .btn-primary {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: var(--beige-light);
    padding: 3rem 0 1.5rem;
    width: 100%;
    z-index: 100;
    position: relative;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(232, 227, 216, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(232, 227, 216, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 227, 216, 0.2);
    color: rgba(232, 227, 216, 0.6);
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(232, 227, 216, 0.8);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ===== Form Messages ===== */
#rezervare-success,
#rezervare-error {
    animation: fadeInUp 0.3s ease-out;
}

#rezervare-success .alert-heading {
    color: #155724;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

#rezervare-error .alert-heading {
    color: #721c24;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

#submit-btn {
    position: relative;
    min-width: 150px;
}

#submit-spinner {
    margin-right: 0.5rem;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .contact-map-wrapper {
        position: relative;
        top: 0;
        margin-top: 3rem;
    }
}

/* ===== Camera Content ===== */
.camera-content {
    color: var(--text-medium);
    line-height: 1.9;
}

.camera-content h2,
.camera-content h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.camera-content h2 {
    font-size: 1.8rem;
}

.camera-content h3 {
    font-size: 1.5rem;
}

.camera-content h2:first-of-type,
.camera-content h3:first-of-type {
    margin-top: 0;
}

.camera-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.camera-content ul,
.camera-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.camera-content li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.camera-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===== Camera CTA ===== */
.btn-rezervare-header {
    white-space: nowrap;
    flex-shrink: 0;
}

.camera-price-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-accent);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.price-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 400;
    font-style: italic;
}

.camera-cta {
    padding-top: 2rem;
    border-top: 1px solid var(--beige);
}

.camera-cta .btn {
    font-size: 1.1rem;
    padding: 16px 32px;
    font-weight: 500;
}

.section-header .text-muted {
    font-size: 1rem;
    font-family: var(--font-accent);
    font-style: italic;
}

@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        padding: 2.5rem 0;
        margin-top: 1rem;
        border-top: 1px solid rgba(232, 227, 216, 0.5);
    }
    
    .gallery-thumbs {
        justify-content: center;
    }
    
    .navbar-nav {
        background: transparent;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .btn-rezervare-header {
        width: 100%;
        margin-top: 1rem;
    }
    
    .section-header .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        letter-spacing: 0.5px;
    }
    
    /* Bootstrap handles responsive grid */
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
}


.gallery-main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}
.gallery-main-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    cursor: zoom-in;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: box-shadow 0.2s;
}
.gallery-main-image img.fullscreen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.97);
    z-index: 9999;
    object-fit: contain;
    margin: 0;
    cursor: zoom-out;
    border-radius: 0;
    box-shadow: none;
}
.gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    justify-content: flex-start;
}
.gallery-thumbs img {
    height: 68px;
    width: auto;
    cursor: pointer;
    opacity: 0.7;
    border-radius: 6px;
    transition: opacity 0.20s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.10);
}
.gallery-thumbs img.active {
    border: 2px solid #206c44;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.features-grid>a{
    text-decoration: none !important;
}

.home-content section:nth-child(even) {
    background-color: var(--white);
}
.home-content section:nth-child(odd) {
    background-color: var(--beige);
}