/*
Theme Name: Studentenkamers Diepenbeek
Description: Een op maat gemaakt thema voor het verhuren van studentenkamers in Diepenbeek.
Author: Alexander Schmitt
Version: 1.0
*/

/* Bootstrap-based theme - All styling handled by Bootstrap utilities and inline styles */

.section-title {
    font-family: 'Sora', sans-serif;
    color: #0c245d;
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f1f3f6 100%);
    color: #1a1f3a;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

/* Navbar custom animations */
.navbar {
    animation: header-reveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.navbar-brand {
    animation: brand-fade-up 1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.navbar-nav {
    animation: nav-fade-in 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.2rem !important;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: inline-block;
    background: transparent;
    margin: 0 0.25rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffc107 0%, #ff9500 100%);
    border-radius: 8px;
    z-index: -1;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scaleX(0);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: #1a1f3a !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 193, 7, 0.3);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.navbar-toggler {
    animation: nav-fade-in 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    border-color: rgba(255, 193, 7, 0.7) !important;
}

.navbar-toggler:hover {
    border-color: rgba(255, 193, 7, 0.8) !important;
}

@keyframes header-reveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brand-fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nav-fade-in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Single Post / Room Detail Page - Using Bootstrap Classes */
/* No custom CSS needed - all styling handled by Bootstrap utility classes */

/* Mobile responsive adjustments */
@media (max-width: 991px) {
    .nav-link {
        margin: 0.5rem 0 !important;
        padding: 0.75rem 1rem !important;
    }
}

/* Houses Showcase */
.houses-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-top: 3.5rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 3rem;
}

/* Simple House Cards - Only images with text */
.house-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(12, 36, 97, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: card-fade-in 0.8s ease-out both;
}

.house-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(12, 36, 97, 0.25);
}

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

.house-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.house-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.house-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(12, 36, 97, 0.95) 100%);
    z-index: 2;
    transition: all 0.3s ease;
}

.house-card:hover .house-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(12, 36, 97, 1) 100%);
}

.house-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.house-content h3 {
    font-family: 'Sora', sans-serif;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.house-card:hover .house-content h3 {
    transform: translateY(-5px);
}

.house-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    transition: transform 0.3s ease;
}

.house-card:hover .house-badges {
    transform: translateY(-5px);
}

.badge-rooms {
    background: #ffc107;
    color: #0c245d;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .houses-showcase {
        gap: 4rem;
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .houses-showcase {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .house-card {
        height: 300px;
    }

    .house-content h3 {
        font-size: 1.8rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(12, 36, 97, 0.8) 0%, rgba(23, 45, 108, 0.8) 50%, rgba(255, 193, 7, 0.1) 100%), url('/wp-content/uploads/herobg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 10rem 1rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: hero-content-fade-up 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.hero-btn {
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

@keyframes hero-content-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(1.2);
    z-index: -1;
    transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary {
    background: linear-gradient(135deg, #ffc107 0%, #ff9500 100%);
    color: #1a1f3a;
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #0056b3 0%, #0066cc 100%);
    color: #fff;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.35);
}

/* Environment Section */
.environment-section {
    padding: 4rem 3rem;
    max-width: 100%;
    margin: 0 !important;
}

.environment-section h2 {
    font-family: 'Sora', sans-serif;
    color: #0c245d;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.environment-content {
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(12, 36, 97, 0.12);
    font-size: 1.1rem;
    line-height: 1.8;
    border: 1px solid rgba(12, 36, 97, 0.08);
    transition: all 0.3s ease;
    animation: card-fade-in 0.8s ease-out 0.1s both;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

.environment-content:hover {
    box-shadow: 0 30px 80px rgba(12, 36, 97, 0.15);
    transform: translateY(-4px);
}

@keyframes card-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Rooms Grid */
.rooms-section {
    padding: 4rem 1rem;
}

.rooms-section h2 {
    font-family: 'Sora', sans-serif;
    color: #0c245d;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card {
    background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(12, 36, 97, 0.1);
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(12, 36, 97, 0.08);
    animation: card-fade-in 0.8s ease-out both;
}

.room-card:nth-child(1) {
    animation-delay: 0.1s;
}

.room-card:nth-child(2) {
    animation-delay: 0.2s;
}

.room-card:nth-child(3) {
    animation-delay: 0.3s;
}

.room-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 100px rgba(12, 36, 97, 0.2);
}

.room-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: transform 0.4s ease;
}

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

.room-card-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
}

.room-card h3 {
    font-family: 'Sora', sans-serif;
    color: #0c245d;
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.room-card .room-details {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.room-card .button {
    align-self: flex-start;
    margin-top: auto;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, #0c245d 0%, #0f2d7a 50%, #1a3a8e 100%);
    color: #fff;
    padding: 5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section h2 {
    font-family: 'Sora', sans-serif;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: card-fade-in 0.8s ease-out both;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-8px);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.testimonial-card .author {
    margin-top: 1.5rem;
    font-weight: 700;
    font-style: normal;
    color: #ffc107;
    font-size: 1rem;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #0c245d 0%, #1a3a8e 100%);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Single Post / Room Detail Page */
.single-post-hero {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #0c245d 0%, #0f2d7a 100%);
    margin: 0;
    padding: 0;
}

.single-featured-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.single-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-post-container {
    width: 100%;
    margin: 0;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #f1f3f6 100%);
    box-sizing: border-box;
    overflow-x: hidden;
}

.single-post {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.single-post-header {
    margin-bottom: 2.5rem;
    border-bottom: 2px solid rgba(12, 36, 97, 0.1);
    padding-bottom: 2rem;
}

.single-post-header h1 {
    font-family: 'Sora', sans-serif;
    color: #0c245d;
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.single-post-meta {
    color: #888;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-category {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107 0%, #ff9500 100%);
    color: #1a1f3a;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
}

.single-post-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 3rem;
}

.single-post-content p {
    margin-bottom: 1.5rem;
}

.single-post-content p:last-child {
    margin-bottom: 0;
}

/* Room Features Section */
.room-features-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #fff;
    border-radius: 0;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

.room-features-section h2 {
    font-family: 'Sora', sans-serif;
    color: #0c245d;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 2rem 0;
    letter-spacing: -0.3px;
}

.room-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.spec-item {
    background: linear-gradient(135deg, #f5f7fa 0%, #f1f3f6 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(12, 36, 97, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.spec-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(12, 36, 97, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

.spec-icon {
    font-size: 2.2rem;
    display: block;
}

.spec-label {
    font-family: 'Sora', sans-serif;
    color: #0c245d;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Single Post CTA */
.single-post-cta {
    margin: 3rem 0;
    width: 100%;
    box-sizing: border-box;
}

.cta-box {
    background: linear-gradient(135deg, #0c245d 0%, #0f2d7a 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
}

.cta-box h3 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    letter-spacing: -0.3px;
}

.cta-box p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    color: rgba(255, 255, 255, 0.95);
}

/* Related Posts Section */
.related-posts {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    background: transparent;
    padding: 4rem 3rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.related-posts h2 {
    font-family: 'Sora', sans-serif;
    color: #0c245d;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.related-posts .rooms-grid {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Navbar logo styling for best readability and responsiveness */
.navbar-logo {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: inline-block;
}

@media (max-width: 768px) {
    .navbar-logo {
        max-height: 40px;
        max-width: 120px;
    }
}

/* Utilities */
.hover-opacity:hover { opacity: 0.8; }
.transition-all { transition: all 0.3s ease; }
.form-control:focus, .input-group-text { border-color: #0c245d !important; }
.form-control:focus + .input-group-text { border-color: #0c245d !important; }
.input-group:focus-within .input-group-text { border-color: #0c245d !important; color: #0c245d !important; }
.input-group:focus-within .form-control { border-color: #0c245d !important; }


/* Responsive Styles */
@media (max-width: 768px) {
    /* Hero section responsive */
    .hero-section {
        padding: 6rem 1rem;
        min-height: auto !important;
    }

    .hero-title {
        font-size: 2.8rem !important; /* Increased from 2.2rem */
        letter-spacing: -0.5px !important;
        margin-bottom: 1rem !important;
    }

    .hero-subtitle {
        font-size: 1.25rem !important; /* Increased from 1.1rem */
        margin-bottom: 1.5rem !important;
        line-height: 1.6 !important;
    }

    .hero-btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 1.1rem !important; /* Increased from 1rem */
    }

    .single-post-hero {
        height: 320px;
    }

    .single-post-container {
        padding: 2rem 1.5rem;
    }

    .single-post {
        padding: 0;
    }

    .single-post-header h1 {
        font-size: 2rem;
    }

    .single-post-content {
        font-size: 1rem;
    }

    .room-features-section {
        padding: 2rem;
        margin: 2rem 0;
    }

    .room-features-section h2 {
        font-size: 1.5rem;
    }

    .room-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .spec-item {
        padding: 1rem;
    }

    .spec-icon {
        font-size: 1.8rem;
    }

    .spec-label {
        font-size: 0.8rem;
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .related-posts {
        padding: 2rem 1.5rem;
    }

    .related-posts h2 {
        font-size: 1.8rem;
    }

    .rooms-section h2 {
        font-size: 1.5rem !important;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        word-break: break-word;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem !important; /* Increased from 1.8rem */
    }

    .hero-subtitle {
        font-size: 1.15rem !important; /* Increased from 1rem */
    }
}

/* Custom GTranslate Behavior */
/* Base hiding class */
.gt-hidden-side {
    transform: translateX(120%) !important; /* Hide completely off to the right */
}

/* Tab shown only when hidden */
.gt-tab-handle {
    position: fixed;
    bottom: 20px;
    right: 0;
    background: white;
    color: #0c245d;
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    border: 1px solid #000;
    border-right: none;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999;
    display: none; /* Controlled by JS */
    align-items: center;
    gap: 8px;
}

.gt-tab-handle i {
    font-size: 1.2rem;
}
