/* ========================================
   GENERAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5a4a3a;
    --secondary-color: #d4a574;
    --accent-color: #8b6b4d;
    --dark-color: #2c2c2c;
    --light-color: #f8f6f3;
    --text-color: #4a4a4a;
    --text-light: #6d6d6d;
    --border-color: #e0e0e0;
    --spacing-unit: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    background-color: #ffffff;
    color: var(--text-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #4a3a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(90, 74, 58, 0.25);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-color);   
    
}

.btn-secondary:hover {
    background-color: #C39460;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 2rem 5rem 5rem;
    background: #ffffff;
}

.hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    margin-left: 0.2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding:0;
    padding-right: 10%;
    padding-left: 10%;
    align-items: center;

    position: relative;
}

.hero-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin: 1.5rem 0 1.5rem 0;
    padding: 0;
    padding-left: 2rem;
    max-width: 20vw;
    align-items: center;
    justify-content: space-around;
}

.spec-item {
    display: grid;
    justify-content: space-around;
    align-items: center;
}

.spec-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    justify-content: center;
    align-items: center;
    display:flex;
}

.spec-value {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1rem;
    justify-content: center;
    align-items: center;
    display:flex;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.features-button-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ========================================
   DIVIDER SECTION
   ======================================== */

.divider-section {
    width: 100%;
    overflow: hidden;
}

.divider-section img,
.divider-section picture {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   DESCRIPTION SECTION
   ======================================== */

.description {
    padding: 5rem 0;
    background-color: #ffffff;
}

.description h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.description-content {
    max-width: 800px;
}

.description-specs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.desc-spec-item {
    text-align: center;
}

.desc-spec-item .spec-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.desc-spec-item .spec-value {
    display: block;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.description-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-section {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card .btn {
    display: inline-block;
    margin-top: 1rem;
    color: white !important;
    text-decoration: none !important;
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: #ffffff;
    color: var(--primary-color);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ========================================
   GALLERY DESCRIPTION
   ======================================== */

.gallery-description {
    padding: 5rem 0;
    background-color: #ffffff;
}

.gallery-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 900px;
}

/* ========================================
   GALLERY
   ======================================== */

.gallery {
    padding: 5rem 0;
    background-color: #ffffff;
}

.gallery-section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ========================================
   VIEW IN PERSON SECTION
   ======================================== */

.view-in-person {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.view-in-person h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.view-in-person > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.view-contact-info {
    display: flex;
    justify-content: center;
}

.view-contact-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid #f0f0f0;
}

.view-contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.view-contact-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.view-contact-details {
    margin-bottom: 2rem;
}

.view-contact-details p {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.view-contact-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

.view-contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.view-contact-details a:hover {
    text-decoration: underline;
}

.view-address {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    padding: 20px;
    transition: opacity 0.3s ease;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

/* ========================================
   CONTENT SECTION
   ======================================== */

.content-section {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.content-main h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.content-main h3 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-main p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.specs-list {
    list-style: none;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.specs-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.specs-list li:last-child {
    border-bottom: none;
}

/* ========================================
   SIDEBAR
   ======================================== */

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box,
.contact-box {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.info-box h3,
.contact-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

.info-item .label {
    font-weight: bold;
    color: var(--primary-color);
}

.info-item .value {
    color: var(--text-light);
}

.contact-box p {
    margin-bottom: 1.5rem;
}

/* ========================================
   EXAMPLE USAGE SECTION
   ======================================== */

.example-usage-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.example-usage-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.example-usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.example-usage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-usage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.example-usage-image {
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-usage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.example-usage-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.example-usage-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   FLOOR PLANS SECTION
   ======================================== */

.floor-plans-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.floor-plan-item {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.floor-plan-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.floor-plan-item h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.floor-plan-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 800px;
}

.floor-plan-image {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.floor-plan-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.floor-plan-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.floor-plan-image:hover img {
    transform: scale(1.02);
}

.floor-plan-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.floor-plan-images .floor-plan-image {
    margin-top: 0;
    max-width: 100%;
}

/* ========================================
   PLANS SECTION (Legacy - kept for compatibility)
   ======================================== */

.plans-section {
    padding: 5rem 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-item {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.plan-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.plan-image {
    margin: 1rem 0;
    border-radius: 4px;
    overflow: hidden;
    background-color: white;
    height: 250px;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   ROOMS SECTION
   ======================================== */

.rooms-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.rooms-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.rooms-section > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.room-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.room-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.room-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    color: var(--primary-color);
    font-size: 1.9rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(139, 69, 19, 0.3);
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-wrapper .contact-card {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.contact-info-wrapper .contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info-wrapper .contact-card.highlight {
    background-color: #fff3cd;
    border-color: #ffc107;
}

/* ========================================
   MAP SECTION
   ======================================== */

.map-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-section p {
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: white;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 4rem 2rem;
    text-align: center;
    color: #999;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 5rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .cta-section {
        flex-direction: column;
    }

    .cta-section .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .example-usage-card {
        padding: 2rem 1.5rem;
    }
    
    .floor-plan-item h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features-grid,
    .rooms-grid,
    .plans-grid,
    .example-usage-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .view-contact-card {
        padding: 2rem 1.5rem;
    }
    
    .floor-plan-images {
        grid-template-columns: 1fr;
    }
    
    .floor-plan-item {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .feature-card,
    .room-card,
    .plan-item {
        padding: 1.5rem;
    }

    .specs-list {
        padding: 1rem;
    }
}
