/* 
 * Daman Local Stays - Page-Specific Styles
 * Layout styles and unique elements for different pages
 */

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('https://firebasestorage.googleapis.com/v0/b/damanstays.firebasestorage.app/o/Daman-local-stays%2FHero-images%2FDaman-Sunset.jpg?alt=media') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Featured Properties Section */
.featured-properties {
    padding: 4rem 0;
}

.properties-scroll {
    overflow-x: auto;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.properties-grid {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
}

/* Host Section */
.host-section {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.host-content {
    max-width: 600px;
    margin: 0 auto;
}

.host-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.host-description {
    font-size: var(--text-lg);
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: var(--medium-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    color: var(--medium-gray);
    font-size: var(--text-xl);
    transition: var(--transition-normal);
}

.social-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Adjustments for Pages */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .host-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .featured-properties {
        padding: 3rem 0;
    }
    
    .host-section {
        padding: 3rem 0;
    }
}