:root {
    --primary: #20aed9;
    --secondary: #00adef;
    --accent1: #fcb040;
    --accent2: #cdb061;
    --accent3: #b4af72;
    --dark: #1a3a4f;
    --light: #f8f9fa;
    --gray: #6c757d;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.7rem 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    padding: 8px 0 !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(32, 174, 217, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 176, 64, 0.3);
    color: white;
}

.hero-section {
    background: linear-gradient(rgba(26, 58, 79, 0.8), rgba(26, 58, 79, 0.7)), url('image/DHOMA.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title h2 {
    color: var(--dark);
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-section {
    padding: 100px 0;
    background-color: var(--light);
}

.about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: translateY(-10px);
}

/* AMINITY BOX - STILIZIMI I NJËJTË SI FEATURE BOX */
.aminity-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.aminity-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.aminity-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 2rem;
}

/* STILET PËR WHY CHOOSE US SECTION */
.choose-section {
    padding: 100px 0;
}

.choose-section h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.choose-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: -10px;
    left: 0;
}

.choose-section .feature-item {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent1);
    transition: all 0.3s ease;
}

.choose-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.choose-section .feature-icon {
    width: 50px;
    height: 40px;
    font-size: 1.5rem;
    margin-right: 20px;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.choose-section .feature-content {
    flex: 1;
}

.choose-section .feature-content h5 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.choose-section .feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 58, 79, 0.9), rgba(26, 58, 79, 0.9)), url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent1);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.5;
}

.guest-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-heading {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Animation for scroll reveal */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
}

.active.fade-bottom {
    animation: fade-bottom 1s ease;
}

@keyframes fade-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(26, 58, 79, 0.8), rgba(26, 58, 79, 0.7)), url('image/Dhoma3.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Story Section */
.story-section {
    padding: 100px 0;
}

.story-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-content h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: -10px;
    left: 0;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--light);
}

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(rgba(26, 58, 79, 0.8), rgba(26, 58, 79, 0.7)), url('image/DHOMA.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 76px;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.gallery-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.featured-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.featured-item h4 {
    margin-bottom: 15px;
    color: white;
}

.video-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Video styles */
video {
    background-color: #000;
    max-height: 600px;
    object-fit: cover;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-weight: 700;
}

.btn-light {
    background: white;
    color: var(--dark);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(26, 58, 79, 0.8), rgba(26, 58, 79, 0.7)), url('../image/DHOMA.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 76px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: linear-gradient(135deg, var(--dark), #2a4a6c);
    color: white;
    padding: 50px 40px;
    height: 100%;
}

.contact-info h3 {
    color: white;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--accent1);
    bottom: 0;
    left: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--accent1);
    font-size: 1.2rem;
}

.contact-details h5 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent1);
}

.social-contact {
    margin-top: 40px;
}

.social-contact h5 {
    color: white;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    padding: 50px 40px;
}

.contact-form h3 {
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    bottom: 0;
    left: 0;
}

.form-control, .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(32, 174, 217, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(32, 174, 217, 0.3);
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-title {
    text-align: center;
    margin-bottom: 40px;
}

.map-title h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

.map-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light) 0%, #f0f8ff 100%);
}

.faq-title {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

.faq-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--dark);
    font-weight: 500;
    padding: 20px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-body {
    padding: 20px;
    color: var(--gray);
}

/* Rooms Page Styles */
.rooms-hero {
    background: linear-gradient(rgba(26, 58, 79, 0.8), rgba(26, 58, 79, 0.7)), url('image/DHOMA.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 76px;
}

.rooms-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.rooms-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.rooms-section {
    background-color: var(--light);
}

.room-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.room-image {
    overflow: hidden;
    border-radius: 10px;
}

.room-info h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-badge {
    background: var(--light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.room-amenities h5 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.amenities-list span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--gray);
}

.amenities-list i {
    color: var(--primary);
}

.room-price {
    font-size: 1.5rem;
    font-weight: 600;
}

.room-price .price {
    color: var(--primary);
}

.room-price .period {
    font-size: 1rem;
    color: var(--gray);
    font-weight: normal;
}

.amenities-section {
    background: linear-gradient(135deg, var(--light) 0%, #f0f8ff 100%);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .contact-hero h1,
    .gallery-hero h1,
    .rooms-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
    
    .choose-section h2 {
        font-size: 2rem;
    }
    
    .choose-section .feature-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .choose-section .feature-icon {
        font-size: 1.5rem;
        margin-right: 15px;
        width: 45px;
        height: 35px;
    }
    
    .gallery-hero {
        padding: 120px 0 60px;
        margin-top: 76px;
    }
    
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-img {
        height: 200px;
    }
    
    video {
        max-height: 500px;
    }
    
    .contact-hero {
        padding: 120px 0 60px;
        margin-top: 76px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-info, 
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .rooms-hero {
        padding: 120px 0 60px;
        margin-top: 76px;
    }
    
    .rooms-hero h1 {
        font-size: 2.5rem;
    }
    
    .room-item {
        padding: 20px;
    }
    
    .room-info h3 {
        font-size: 1.5rem;
    }
    
    .amenities-list {
        gap: 10px;
    }
    
    /* Për aminity-box në mobile */
    .aminity-box {
        padding: 25px 15px;
    }
    
    .aminity-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}
