/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans CJK KR', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Main Section Styles */
.main-section {
    background-image: url('figmaAssets/section1.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    color: #1a3478;
    font-size: 36px;
    font-weight: bold;
    line-height: 44px;
    margin-bottom: 32px;
}

.hero-search {
    max-width: 590px;
    margin: 0 auto 32px;
}

.hero-search-box {
    position: relative;
    width: 100%;
}

.hero-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    color: #71717a;
}

.hero-search-input {
    width: 100%;
    height: 48px;
    padding: 10px 10px 10px 44px;
    background-color: #ffffff;
    border: 1px solid #d4d4d8;
    border-radius: 4px;
    font-size: 16px;
    color: #a1a1aa;
    outline: none;
}

.hero-search-input::placeholder {
    color: #a1a1aa;
}

.rental-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rental-card {
    cursor: pointer;
    width: 285px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 28px;
    text-align: left;
}

.rental-icon {
    width: 48px;
    height: 48px;
    object-fit: cover;
    margin-bottom: 10px;
}

.rental-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
    color: #000000;
    margin-bottom: 10px;
}

.rental-description {
    font-size: 14px;
    line-height: 20px;
    color: #52525b;
}

/* Featured Section Styles */
.featured-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.section-title {
    font-size: 30px;
    line-height: 38px;
    color: #27272a;
    margin-bottom: 32px;
}

.section-title .bold {
    font-weight: bold;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); gap:20px;
}

.property-card {
    cursor: pointer;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.property-image {
    position: relative;
    width: 100%;
    height: 175px;
    background-size: cover;
    background-position: center;
}

.heart-btn {
    position: absolute;
    top: 11px;
    right: 11px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 4px;
}

.heart-btn svg {
    width: 24px;
    height: 24px;
}

.property-content {
    padding: 24px;
}

.property-badges {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.property-badge {
    background-color: #dbeafe;
    color: #27272a;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.property-price {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 4px;
}

.property-details {
    font-size: 12px;
    font-weight: 500;
    color: #52525b;
    margin-bottom: 4px;
}

.property-deposit {
    font-size: 12px;
    font-weight: 500;
    color: #52525b;
    margin-bottom: 4px;
}

.property-description {
    font-size: 12px;
    color: #52525b;
}

/* Property List Section */
.property-list-section {
    background-color: #f9fafb;
    padding: 40px 0;
}

.property-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 12px;
    }
    
    .header-left {
        gap: 12px;
    }
    
    .search-container {
        width: 200px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .rental-options {
        flex-direction: column;
        align-items: center;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    .property-image { height: 250px;}
}

@media (max-width: 480px) {
    .hero-search {
        max-width: 100%;
    }
    
    .rental-card {
        width: 100%;
        max-width: 320px;
    }

    
}

