/* Global Styles */
:root {
    --primary-color: #15B9BB; /* Teal from user requirements */
    --secondary-color: #292F36; /* Navy blue */
    --accent-color-1: #fcb900; /* Yellow from user requirements */
    --accent-color-2: #f78da7; /* Pink from user requirements */
    --light-color: #F7F9FB;
    --dark-color: #292F36;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

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

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.logo-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    background-color: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: auto;
}

.header h1 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 2.2rem;
}

.subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.url-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e9f7f6;
    padding: 10px;
    border-radius: 30px;
    margin: 0 auto;
    max-width: 300px;
}

#url-text {
    margin-right: 10px;
    color: var(--secondary-color);
}

#copy-url {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.2rem;
}

/* Card Styles */
.card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.card h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
}

/* Gallery Styles */
.gallery-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color-2) #f0f0f0;
}

.gallery-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background-color: var(--accent-color-2);
    border-radius: 10px;
}

.gallery-item {
    flex: 0 0 auto;
    width: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-right: 5px;
}

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Brands Banner Styles */
.brands-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color-1) #f0f0f0;
}

.brands-container::-webkit-scrollbar {
    height: 8px;
}

.brands-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.brands-container::-webkit-scrollbar-thumb {
    background-color: var(--accent-color-1);
    border-radius: 10px;
}

.brand-logo {
    flex: 0 0 auto;
    min-width: 120px;
    text-align: center;
    padding: 10px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.brand-img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
}

/* Button Styles */
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 10px;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    flex: 1;
    min-width: 100px;
}

.btn-primary:hover {
    background-color: #6ac9a3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    flex: 1;
    min-width: 120px;
}

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

.btn-review {
    background-color: var(--accent-color-1);
    color: var(--dark-color);
    width: 100%;
    margin-top: 10px;
}

.btn-review:hover {
    background-color: #e6bc5c;
}

.btn-save {
    background-color: var(--accent-color-2);
    color: white;
    width: 100%;
}

.btn-save:hover {
    background-color: #e57c96;
}

.save-top {
    margin-top: 15px;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    padding: 12px 20px;
    box-shadow: var(--shadow);
}

/* Locations Styles */
.locations-container {
    margin-top: 15px;
}

.state-container {
    margin-bottom: 15px;
}

.state-btn {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--accent-color-2);
    color: white;
    border: none;
    border-radius: 8px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.state-btn:hover {
    background-color: #e67c95;
}

.state-btn i {
    transition: transform 0.3s ease;
}

.state-btn.active i {
    transform: rotate(180deg);
}

.locations-list {
    display: none;
    background-color: #f7f9fb;
    border-radius: 0 0 8px 8px;
    padding: 15px;
    margin-top: 2px;
}

.locations-list.active {
    display: block;
}

.location-item {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.location-item:last-child {
    border-bottom: none;
}

.location-item h3 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* Social Links Styles */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.social-links .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
}

.social-links .btn-secondary {
    background-color: #E8E3F7;
    color: var(--dark-color);
    border: none;
}

.social-links .btn-secondary:hover {
    background-color: #D8D3E7;
    color: var(--dark-color);
}

.social-links .btn-review {
    background-color: var(--accent-color-1);
    color: var(--dark-color);
}

.btn-save {
    background-color: var(--accent-color-1);
    color: var(--dark-color);
    width: 100%;
}

.btn-save:hover {
    background-color: #e6a800;
}
.footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.footer p {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 20px;
    }
    
    .logo-container {
        width: 100px;
        height: 100px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .gallery-item {
        flex: 1 1 calc(50% - 10px);
        min-width: 150px;
    }
    
    .btn {
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .social-links {
        flex-direction: column;
    }
}
