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

:root {
    --white: #ffffff;
    --cream: #faf8f5;
    --light-bg: #f8f6f3;
    --gold: #c9a227;
    --gold-light: #d4b84a;
    --gold-dark: #b8860b;
    --dark: #1a1a1a;
    --text-dark: #333333;
    --text-muted: #666666;
    --border-light: #e8e4df;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 8px 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 90px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

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

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark);
    font-weight: 600;
}

.nav-logo-tagline {
    font-size: 0.7rem;
    color: var(--gold-dark);
    letter-spacing: 2px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

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

.nav-links a:hover {
    color: var(--gold);
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.mobile-menu span {
    width: 28px;
    height: 2px;
    background-color: var(--dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    background:
        linear-gradient(135deg, rgba(250, 248, 245, 0.75) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(250, 248, 245, 0.75) 100%),
        url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(201,162,39,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(201,162,39,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(201,162,39,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(201,162,39,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(201,162,39,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 1;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    padding: 60px 80px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.hero-logo {
    width: 200px;
    max-width: 50%;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero .tagline {
    font-size: 1.2rem;
    color: var(--gold-dark);
    font-weight: 500;
    letter-spacing: 6px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-description {
    max-width: 650px;
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 16px 45px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Section Styling */
section {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark);
}

.section-title span {
    color: var(--gold);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.title-decoration span {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.title-decoration .diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* About Section */
.about {
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    background: var(--light-bg);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Collection Section */
.collection {
    background: var(--white);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.collection-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-info h4 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.collection-info p {
    color: var(--gold-light);
    font-size: 0.85rem;
}

/* Highlight Collection Items */
.collection-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    text-align: center;
    padding: 100px 5%;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

/* Contact Section */
.contact {
    background: var(--light-bg);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.contact-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    color: var(--dark);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.contact-card .role {
    color: var(--gold-dark);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-card a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--light-bg);
    border-radius: 50px;
    transition: all 0.3s;
}

.contact-card a:hover {
    background: var(--gold);
    color: var(--white);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

/* Location Section */
.location {
    background: var(--white);
}

.location-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: stretch;
}

.location-info-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--gold);
    height: 400px;
}

.location-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 25px;
    aspect-ratio: 1;
}

.location-info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.location-info-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 2;
    margin: 0;
}

.map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--gold);
    height: 400px;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 400px;
}

@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .location-info-card {
        padding: 40px 30px;
        height: 350px;
    }

    .map-card {
        height: 350px;
    }

    .map-card iframe {
        height: 350px;
    }
}

/* Footer */
footer {
    background: var(--dark);
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-brand .footer-tagline {
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive - Large Tablets & Small Laptops */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        gap: 50px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

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

/* Responsive - Tablets */
@media (max-width: 768px) {
    nav {
        padding: 10px 4%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-logo img {
        height: 70px;
    }

    .nav-logo-text {
        font-size: 1.2rem;
    }

    .nav-logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .hero {
        padding: 100px 15px 60px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 40px 30px;
        margin: 0 15px;
        border-radius: 20px;
    }

    .hero-logo {
        width: 150px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .hero-description {
        font-size: 1rem;
    }

    section {
        padding: 70px 4%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image::before {
        display: none;
    }

    .about-content h3 {
        font-size: 1.6rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-stats {
        justify-content: center;
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .collection-overlay {
        padding: 15px;
    }

    .collection-info h4 {
        font-size: 1rem;
    }

    .collection-info p {
        font-size: 0.75rem;
    }

    .cta-section {
        padding: 70px 4%;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 25px;
    }

    .contact-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-card a {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .location-grid {
        padding: 0;
    }

    .location-info-card {
        padding: 35px 25px;
        height: auto;
        min-height: 300px;
    }

    .location-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
    }

    .location-info-card h3 {
        font-size: 1.5rem;
    }

    .location-info-card p {
        font-size: 1rem;
    }

    .map-card {
        height: 350px;
    }

    .map-card iframe {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand .footer-logo {
        font-size: 1.8rem;
    }

    .footer-links h4 {
        margin-bottom: 15px;
    }

    footer {
        padding: 50px 4% 25px;
    }
}

/* Responsive - Mobile Phones */
@media (max-width: 480px) {
    nav {
        padding: 8px 3%;
    }

    .nav-logo img {
        height: 60px;
    }

    .nav-logo-text {
        font-size: 1.1rem;
    }

    .nav-logo-tagline {
        display: none;
    }

    .hero {
        padding: 90px 10px 50px;
    }

    .hero-content {
        padding: 30px 20px;
        margin: 0 5px;
        border-radius: 15px;
    }

    .hero-logo {
        width: 120px;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero .tagline {
        font-size: 0.85rem;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    section {
        padding: 50px 4%;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .title-decoration span {
        width: 30px;
    }

    .about-grid {
        gap: 30px;
    }

    .about-content h3 {
        font-size: 1.4rem;
    }

    .about-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        padding-top: 25px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .collection-grid {
        gap: 10px;
    }

    .collection-overlay {
        padding: 12px;
        opacity: 1;
    }

    .collection-info h4 {
        font-size: 0.9rem;
    }

    .collection-info p {
        font-size: 0.7rem;
    }

    .cta-section {
        padding: 50px 4%;
    }

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

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .contact-card a {
        font-size: 0.95rem;
        padding: 10px 15px;
    }

    .location-grid {
        gap: 15px;
    }

    .location-info-card {
        padding: 30px 20px;
        min-height: auto;
    }

    .location-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
        margin-bottom: 20px;
    }

    .location-icon svg {
        width: 28px;
        height: 28px;
    }

    .location-info-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .location-info-card p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .map-card {
        height: 300px;
    }

    .map-card iframe {
        height: 300px;
    }

    footer {
        padding: 40px 4% 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-brand .footer-logo {
        font-size: 1.5rem;
    }

    .footer-brand .footer-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links h4 {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Responsive - Small Mobile Phones */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .about-content h3 {
        font-size: 1.2rem;
    }

    .cta-section h2 {
        font-size: 1.3rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }
}
