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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1C1C1A;
    background: linear-gradient(135deg, #FAFAF7 0%, #F5F0EA 50%, #F7F4F0 100%);
    overflow-x: hidden;
    opacity: 0;
    animation: pageLoad 0.8s ease-out forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E8D5B7;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(217, 178, 76, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.7;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: translateY(-2px);
    animation: gentleFloat 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .logo img {
        height: 32px;
    }
}

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

.nav-link {
    color: #1C1C1A;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #C4A043;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C4A043, #D9B24C);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: #1C1C1A;
    margin: 2px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 250, 247, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #EAE7E0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .header-container {
        padding: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    background: #1C1C1A;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-image img {
        object-position: center 40%;
    }
}

@media (max-width: 768px) {
    .hero-image img {
        object-position: center 45%;
    }
    
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .page-hero .hero-content h1 {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    cursor: pointer;
    background: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #C4A043;
    color: white;
    border-color: #C4A043;
}

.btn-primary:hover {
    background-color: transparent;
    color: #C4A043;
    border-color: #C4A043;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 160, 67, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1C1C1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Feature Strips */
.feature-strips {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F9F6F2 0%, #F5F0EA 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

@media (max-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FEFCF9 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(28, 28, 26, 0.1);
    border: 1px solid rgba(196, 160, 67, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}



.feature-card:nth-child(4) {
    background: linear-gradient(135deg, #FDF9F3 0%, #FAF4EC 100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(196, 160, 67, 0.25);
    border-color: rgba(196, 160, 67, 0.3);
}

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

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

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

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.feature-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.feature-content h3 {
    margin-bottom: 1rem;
    color: #1C1C1A;
}

.feature-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-link {
    color: #C4A043;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-top: auto;
}

.feature-link:hover {
    color: #1C1C1A;
}

/* About Lacey Section */
.about-lacey {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2C2B26 0%, #3A3832 100%);
    color: #F9F6F2;
}

.about-lacey-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-lacey-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(28, 28, 26, 0.15);
}

.about-lacey-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-lacey-text h2 {
    margin-bottom: 0;
    color: #F9F6F2;
}

.about-lacey-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #E8D5B7;
    margin-bottom: 1.5rem;
}

.about-lacey-cta {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-lacey-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-lacey-text .section-divider {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F9F6F2 0%, #F1EDE6 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-header h2 {
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.section-header:hover h2 {
    color: #C4A043;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #C4A043 0%, #D9B24C 100%);
    margin: 0 auto;
    transform: scaleX(0);
    animation: scaleInDivider 0.8s ease-out 0.3s forwards;
}

@keyframes scaleInDivider {
    to {
        transform: scaleX(1);
    }
}

/* Alternate section headers with subtle background */
.page-content:nth-of-type(even) .section-header {
    background: rgba(196, 160, 67, 0.05);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    text-align: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(20px);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.testimonial-slide blockquote {
    margin: 0;
}

.testimonial-slide p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #444;
}

.testimonial-slide cite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: normal;
    color: #C4A043;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: #C4A043;
}

/* Call to Action */
.cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1C1C1A 0%, #2C2B26 100%);
    color: #F9F6F2;
}

.cta h2 {
    color: #F9F6F2;
}

.cta p {
    color: #E8D5B7;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1C1C1A 0%, #252422 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-bio {
    max-width: 500px;
}

.footer-bio p {
    color: #ccc;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #C4A043;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Portfolio Specific Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) contrast(1);
}

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.05);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 160, 67, 0.8) 0%, rgba(180, 140, 50, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 50vw;
    max-height: 85vh;
    position: relative;
    padding: 1rem;
    box-sizing: border-box;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 80vw;
        max-height: 80vh;
        padding: 0.5rem;
    }

    .lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1C1C1A;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E8D5B7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C4A043;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-success {
    color: #27ae60;
    text-align: center;
    padding: 1rem;
    background-color: #d4edda;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FEFCF9 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(28, 28, 26, 0.1);
    border: 1px solid rgba(196, 160, 67, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}


/* Ensure all pricing cards have dark text by default */
.pricing-title {
    color: #1C1C1A !important;
}

.pricing-features li {
    color: #666 !important;
}


.pricing-card:nth-child(3) {
    background: linear-gradient(135deg, #FDF9F3 0%, #FAF4EC 100%);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 160, 67, 0.15);
    border-color: rgba(196, 160, 67, 0.2);
}


.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1C1C1A;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #C4A043;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #666;
}

/* Page Specific Styles */
.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

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

.page-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-content {
    color: white;
    text-align: center;
    max-width: 600px;
    padding: 0 2rem;
}

.page-hero .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero .hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Investment page hero - add bottom margin to avoid covering face */
body:has([href="investment.html"].nav-link.active) .page-hero .hero-content {
    margin-bottom: 6rem;
}

.page-content {
    padding: 6rem 0;
}


/* Remove automatic dark background from all even page-content sections
   since some pages like investment should stay light */

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

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

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Info Cards - Center 3 cards */
.contact-info .feature-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info .feature-card {
    flex: 0 1 300px;
    max-width: 320px;
}

@media (max-width: 768px) {
    .contact-info .feature-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-info .feature-card {
        max-width: 100%;
    }
}

/* My Approach Cards - Center 3 cards */
.values-section .feature-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.values-section .feature-card {
    flex: 0 1 300px;
    max-width: 320px;
}

@media (max-width: 768px) {
    .values-section .feature-grid {
        flex-direction: column;
        align-items: center;
    }

    .values-section .feature-card {
        max-width: 100%;
    }
}

/* Investment Info Cards - Center 3 cards */
.investment-info .feature-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.investment-info .feature-card {
    flex: 0 1 300px;
    max-width: 320px;
}

/* Ensure dark text on white background cards */
.feature-card h3 {
    color: #1C1C1A !important;
}

.feature-card p {
    color: #666 !important;
}


@media (max-width: 768px) {
    .investment-info .feature-grid {
        flex-direction: column;
        align-items: center;
    }

    .investment-info .feature-card {
        max-width: 100%;
    }
}

/* Add-ons Section Responsive */
@media (max-width: 768px) {
    .addons-section div[style*="grid-template-columns"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}