/* 
   ========================================
   LARAMANI HOTEL BOUTIQUE DESIGN SYSTEM
   ========================================
*/

/* CSS Reset & General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 300;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.text-center { text-align: center; }
.bg-light { background-color: #f9f7f2; }
.bg-dark { background-color: #111; }
.text-light { color: #f9f9f9; }

/* Variables */
:root {
    --primary: #c5a059; /* Gold */
    --primary-dark: #a08040;
    --secondary: #e67e22; /* Earthy Orange */
    --dark: #1a1a1a;
    --light: #f9f7f2;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sections Padding */
section {
    padding: 5rem 0;
}

/* Badge */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

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

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    background-color: var(--dark);
    color: #f9f9f9;
}

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

/* Site Header */
#site-header {
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

#site-header .logo a {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark);
}

#site-header .logo span {
    color: var(--primary);
    font-weight: 400;
}

#site-header .nav-links {
    display: flex;
    gap: 2.5rem;
}

#site-header .nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    position: relative;
}

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

#site-header .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

#site-header .nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}
.intro {
    padding: 100px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text {
    text-align: left;
}

.intro-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    display: block;
    transition: transform var(--transition-slow);
}

.intro-image:hover img {
    transform: scale(1.05);
}

.welcome-quote {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.6rem;
    color: var(--primary);
    line-height: 1.6;
    font-family: var(--font-heading);
    font-style: italic;
    letter-spacing: 1px;
}

.welcome-description p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.welcome-description b {
    color: var(--dark);
    font-weight: 600;
}

.house-rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.rule-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-radius: 10px;
    transition: var(--transition);
}

.rule-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.rule-item h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rule-item p {
    font-size: 0.95rem;
    color: #444;
}

.corporate-info {
    margin-top: 80px;
    background: var(--dark);
    color: #fff;
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.corporate-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.corporate-info h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 25px;
}

.corporate-info p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Feature Items */
.intro-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-item span {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Rooms Grid */
.room-category-block {
    margin-bottom: 5rem;
}

.category-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.premium-label {
    font-size: 0.7rem;
    background-color: var(--primary);
    color: #fff;
    padding: 2px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    vertical-align: middle;
}

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

.room-card {
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-10px);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--dark);
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.room-info {
    padding: 2rem;
}

.room-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.accommodation {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.room-details {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    height: 3rem;
}

.amenities-list-small {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: #888;
}

.amenities-list-small i {
    color: var(--primary);
    margin-right: 5px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.card-footer .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

/* Highlighted Exclusive Card */
.room-card.highlight {
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.room-card.highlight .price-badge {
    background: var(--primary);
}

.services-header {
    margin-bottom: 4rem;
}

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

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card ul {
    margin-top: 15px;
}

.service-card li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

.service-card li i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.highlight-text {
    color: #993300;
    font-weight: 700;
    margin: 20px 0;
    display: block;
}

.corp-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100% !important;
    display: block;
}

.location-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.location-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.important-box {
    margin-top: 30px;
    padding: 25px;
    background: rgba(197, 160, 89, 0.05);
    border-left: 4px solid var(--primary);
}

.important-box strong {
    color: var(--secondary);
}

@media (max-width: 992px) {
    .location-content {
        grid-template-columns: 1fr;
    }
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.amenity-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.amenity-item p {
    color: #888;
    font-size: 0.9rem;
}

.additional-service {
    margin-top: 5rem;
    background: rgba(197, 160, 89, 0.1);
    padding: 2rem;
    border: 1px dashed var(--primary);
}

/* Conditions */
.conditions-box {
    background: #fff;
    padding: 3rem;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.conditions-box h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.conditions-box ul {
    margin-top: 1.5rem;
}

.conditions-box li {
    margin-bottom: 1rem;
    list-style: disc;
    margin-left: 1.5rem;
}

/* Footer */
footer {
    background-color: #0b0b0b;
    padding: 5rem 0 0;
    color: #aaa;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-info h3 {
    color: #fff;
    letter-spacing: 2px;
}

.contact-data {
    margin-top: 2rem;
}

.contact-data p {
    margin-bottom: 1rem;
}

.contact-data i {
    color: var(--primary);
    margin-right: 15px;
    width: 20px;
}

.footer-links h4, .footer-social h4 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    font-size: 1.4rem;
    color: #fff;
    width: 45px;
    height: 45px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 2rem 0;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    #site-header .nav-links {
        display: none; /* Add JS toggle for mobile */
    }
    
    .nav-toggle { display: block; }
    
    .hero h1 { font-size: 2.8rem; }
    
    .intro-features { flex-direction: column; gap: 2rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro-text {
        text-align: center;
    }
    
    .intro-features {
        justify-content: center;
    }
}

/* Rates Table Styles */
.rates-container {
    max-width: 900px;
    margin: 50px auto;
}

.tTarifas {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.tTarifas th {
    background: var(--primary);
    color: #fff;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tTarifas td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
}

.tTarifas tr:last-child td {
    border-bottom: none;
}

.tTarifas tr:hover {
    background-color: rgba(197, 160, 89, 0.05);
}

.promos-link {
    display: block;
    color: var(--secondary);
    font-weight: 700;
    margin: 20px 0;
    text-decoration: underline;
    font-size: 1.1rem;
}

.rates-notes {
    background: var(--light);
    padding: 40px;
    border-radius: 15px;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    border: 1px solid rgba(0,0,0,0.05);
}

.rates-notes b {
    color: var(--dark);
    display: block;
    margin-bottom: 15px;
}

.rates-notes p {
    margin-bottom: 15px;
}
