@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Merriweather:wght@400;700&display=swap');

/* Basic Styles */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background-color: #FFFFFF;
    color: #5A2311;
}

/* Phone Bar */
.phone-bar {
    background-color: #45261c;
    color: #FFFFFF;
    text-align: left;
    padding: 0px 20px 2px 20px;
    width: 100%;
    box-sizing: border-box;
}

.phone-bar a {
    color: #fff2ca;
    
    font-weight: 400;
    font-size:12px;
    transition: opacity 0.5s ease;
    transition: text-decoration 0.5s ease;
    padding-left: 4px;
}

.phone-bar a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: #A37137;
    transition: color 0.3s ease;
}

a:hover {
    color: #BC9C22;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    
    padding: 20px;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-right: 25px;
    
}

.logo a img {
    margin-left: 25px;
    width: 120px;
    height: 60px;
}

nav ul li {
    margin-top: 10px;
    display: inline-block;
    margin-left: 20px;
}

nav ul li a {
    font-size: 16px;
}

.phone-button{
    border: none;
    background-color: #A37137;
    
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 400;
    transition: background-color 0.5s ease;
}
.phone-button a {
    color: #FFFFFF;
}

.phone-button:hover {
    background-color: #7e572b;
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFFFFF;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border-top: 3px solid #A37137;
}

.dropdown-content a {
    color: #5A2311;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.5s ease;
}

.dropdown-content a:hover {
    background-color: #eaddd0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.main {
    margin-top: -50px;
}
/* Hero Section */
.hero {
    flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 60px 20px;
        background: linear-gradient(217deg, rgba(129, 66, 66, 0.8), rgb(255 0 0 / 0) 70.71%),
        linear-gradient(127deg, rgba(209, 192, 94, 0.8), rgb(0 255 0 / 0) 70.71%),
        linear-gradient(336deg, rgba(249, 249, 250, 0.8), rgb(0 0 255 / 0) 70.71%);
}


.hero-content {
    text-align: center;
    margin-top: 0px;
}

.hero-services {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.hero-services li {
    color: #5A2311;
    font-size: 18px;
    position: relative;
    padding-left: 20px;
}

.licontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    
}
.hero-services li::before {
    content: "•";
    color: #A37137;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
}

/* .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.hero-image img {
    max-width: 100%;
    height: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 48px;
    letter-spacing: -0.03em;
    margin-bottom: 35px;
    color: #5A2311;
}

.hero p {
    font-size: 20px;
    color: #5A2311;
}

.btn {
    background-color: #A37137;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    border: none;
    border-color: #5A2311;
    transition: background-color 0.5s ease;
}

/* Specific spacing for hero button after paragraph */
.hero-content p + .btn {
    margin-top: 120px;
}

.btn:hover {
    background-color: #7e572b;
    color: #FFFFFF;
}
.about {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    width: 280px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-left: 120px;
}

.about-text {
    flex: 1;
}
/* About Page Specifics */
.values {
    padding: 50px 20px;
    text-align: center;
    background-color: #f8f5f1;
}

.values h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #5A2311;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.value-item h3 {
    font-size: 24px;
    color: #A37137;
    margin-bottom: 15px;
}

/* Practice Areas Section */
.practice-areas {
    padding: 50px 20px;
    text-align: center;
}

.practice-areas h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #5A2311;
}

.practice-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.practice-area-card {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-end;
}

.practice-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.practice-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Merriweather', serif;
    color: #FFFFFF;
}

.card-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #FFFFFF;
    opacity: 0.95;
}

/* EB-5 Card */
.eb5-card {
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

/* E-2 Card */
.e2-card {
    background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

/* L-1 Card */
.l1-card {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

/* O-1 Card */
.o1-card {
    background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
}

/* Contact Page Specifics */
.trust-indicators {
    padding: 60px 20px;
    background-color: #f8f5f1;
    text-align: center;
}

.trust-indicators h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #5A2311;
}

.indicator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.indicator-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.indicator-item h3 {
    font-size: 24px;
    color: #A37137;
    margin-bottom: 15px;
}

/* Accordion Section */
.accordion-section {
    padding: 60px 20px;
    text-align: center;
}

.accordion-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #5A2311;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-btn {
    background-color: #f8f5f1;
    color: #5A2311;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Lato', sans-serif;
}

.accordion-btn:hover, .accordion-btn.active {
    background-color: #eaddd0;
}

.accordion-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-panel p {
    padding: 15px 0;
    margin: 0;
    font-size: 16px;
    text-align: left;
}

/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

form input,
form textarea {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form textarea {
    height: 150px;
}

form button {
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #5A2311;
    color: #FFFFFF;
    text-align: center;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.social-media a {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.social-media img {
    transition: opacity 0.3s ease;
    width: 29px;
    height: 29px;
}

.social-media img:hover {
    opacity: 0.8;
}

/* About Section */
.about {
    align-items: center;
    background-color: hsl(60, 100%, 98%);
    padding: 60px 100px;
}

.about-text {
    align-items: left;
    padding: 0px 30px;
}

.about h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #5A2311;
}

.about p {
    font-size: 18px;
    line-height: 1.5;
}

/* Practice Area Pages */
.practice-area-header {
    background-color: #83755C;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.practice-area-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.practice-area-header p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.practice-area-content {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.practice-area-content h2 {
    color: #A37137;
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.practice-area-content h2:first-child {
    margin-top: 0;
}

.practice-area-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.practice-area-content li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.practice-area-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-study {
    background-color: #f8f5f1;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #A37137;
}

.case-study p {
    margin-bottom: 15px;
}

.case-study p:last-child {
    margin-bottom: 0;
}

.practice-img-wrapper {
    text-align: center;
    margin: 40px 0;
}

.practice-img-small {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.practice-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Map Section */
.map-section {
    background: #f8f5f1 url('https://www.transparenttextures.com/patterns/concrete-wall.png'); /* subtle texture */
    padding: 40px 0;
    margin: 0;
}

.map-flex {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    min-height: 400px;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
}

.map-embed-container {
    flex: 1 1 50%;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    background: #fff;
    border-radius: 0 0 0 0;
    overflow: hidden;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
}

.map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(1) contrast(1.1);
}

.map-info {
    flex: 1 1 50%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 40px 48px 48px;
    min-width: 300px;
    max-width: 600px;
    font-family: 'Lato', sans-serif;
}

.map-address h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0 0 32px 0;
    color: #222;
    line-height: 1.2;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.map-hours {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #222;
    line-height: 2.25;
}

.map-hours strong {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.map-phone {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: #222;
}

.map-phone strong {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.map-phone a {
    font-family: 'Lato', sans-serif;
    color: #5A2311;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .map-flex {
        flex-direction: column;
        min-height: unset;
    }
    .map-embed-container, .map-info {
        max-width: 100%;
        min-width: 0;
        padding: 0;
    }
    .map-info {
        padding: 32px 16px;
        align-items: flex-start;
    }
    .map-iframe {
        min-height: 250px;
    }
    .map-address h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .map-hours, .map-phone {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .about {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 40px 20px;
    }
    .about-img {
        width: 100%;
        max-width: 280px;
        margin-left: 0;
    }
    .about-text {
        padding: 0;
        text-align: center;
    }
    .about h2 {
        font-size: 28px;
        text-align: center;
    }
    .about p {
        font-size: 16px;
        text-align: center;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #5A2311;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        display: block;
        margin: 0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .phone-number a {
        margin: 10px 20px;
        text-align: center;
        display: inline-block;
        padding: 10px 20px;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: #f8f5f1;
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease-in-out, opacity 0.6s ease-in-out;
        opacity: 0;
        border-top: none;
        min-width: auto;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 300px;
        opacity: 1;
    }
    
    .dropdown-content a {
        padding: 10px 30px;
        font-size: 14px;
    }
    
    /* Hero Section */
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 60px 20px;
    }
    
    .hero-content {
        text-align: center;
        margin-top: 0;
    }
    
    .hero h1 {
        font-size: 36px;
        margin-bottom: 20px !important;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 25px !important;
    }
    
    .hero-image img {
        max-width: 80%;
    }
    
    
    
    /* General Text Sizes */
    main {
        margin-top: 0;
    }
    
    h1 {
        font-size: 32px !important;
    }
    
    h2 {
        font-size: 28px !important;
    }
    
    h3 {
        font-size: 24px !important;
    }
    
    p {
        font-size: 16px !important;
    }
    
    /* Practice Areas */
    .practice-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .practice-area-card {
        height: 200px;
    }
    
    /* Trust Indicators */
    .indicator-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: row;
        gap: 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .footer-content p {
        font-size: 10px !important;
    }
    
    .social-media img {
        width: 29px;
        height: 29px;
    }
    
    /* Practice Area Pages */
    .practice-area-header h1 {
        font-size: 36px;
    }
    
    .practice-area-content h2 {
        font-size: 28px;
    }
    
    /* Map Section */
    .map-section h2 {
        font-size: 28px;
    }
    
    .map-placeholder {
        padding: 30px 20px;
    }
    
    .address-info h3 {
        font-size: 20px;
    }
    
    .address-info p {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    /* Even smaller screens */
    .logo a img {
        margin-left: 25px;
    }

    .hero h1 {
        font-size: 28px;
        margin-top: 0px;
        margin-bottom: 25px;
    }
    
    .hero .hero-content p {
        font-size: 16px;
        margin-bottom: 100px;
    }
    
    .hero .hero-content .btn {
        padding: 12px 24px;
        font-size: 16px;
        margin-top: 100px;
    }
    
    .hero {
        margin-top: 20px;
        padding: 40px 15px;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
   
    /* General spacing */
    .about, .practice-areas, .trust-indicators, .accordion-section {
        padding: 30px 15px;
    }
    
    .values {
        padding: 30px 15px;
    }
    
    .practice-area-content {
        padding: 40px 15px;
    }
    
    .practice-area-header {
        padding: 40px 15px;
    }
} 
@media (max-width: 700px) {
    
    
}

