@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');

@font-face {
    font-family: 'Albertus_Extra_Bold';
    src: url(/assets/fonts/Albertus_Extra_Bold.ttf);
}

@font-face {
    font-family: 'NT_Mikella';
    src: url(/assets/fonts/NT_Mikella.otf);
}



:root {
    --brand-gold: #c9ae6b;
    --card-gold: #f2ce7c;
    --card-gold-darker: #d4a017;
    --brand-maroon: #7b1d12;
    --text-dark: #1a1a1a;
    --bg-light: #f8f9fa;
}

body {
    background-color: var(--bg-light);
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 40px 0;
}

.main-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background: white;
    padding: 30px 25px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 35px;
}

.logo-circle {
    background-color: #000;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.05);
}

.logo-v {
    color: var(--brand-gold);
    font-size: 75px;
    font-weight: 900;
    font-style: italic;
    transform: skewX(-10deg);
    line-height: 1;
    user-select: none;
}

.brand-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

/* Social Media Section */
.social-container {
    background-color: #f1f3f5;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 35px;
    border: 1px solid rgba(0,0,0,0.03);
}

.social-link {
    font-family: "Roboto Condensed", sans-serif;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    padding: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: white;
    color: var(--brand-maroon);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.social-link i {
    font-size: 1.3rem;
    width: 25px;
    margin-right: 10px;
    text-align: center;
}

/* Shop Location Header */
.section-header {
    font-family: "NT_Mikella";
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-maroon);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
    position: relative;
}

.section-header::after {
    content: "";
    position: absolute;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--brand-maroon);
    border-radius: 2px;
}

.section-header i {
    margin-right: 12px;
    font-size: 1.6rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* Location Card Styling */
.location-card {
    background-color: var(--card-gold);
    border-radius: 18px;
    margin-bottom: 25px;
    position: relative;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.location-card::before, .location-card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 14px;
    background-color: var(--card-gold-darker);
    opacity: 0.8;
}
.location-card::before { left: 0; }
.location-card::after { right: 0; }

.card-content {
    padding: 25px 45px;
    text-align: center;
}

.shop-title {
    font-family: "Albertus_Extra_Bold";
    color: var(--brand-maroon);
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-address {
    font-family: "Roboto Slab", serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(0,0,0,0.8);
    font-style: normal;
}

.phone-link {
    text-decoration: none;
    color: var(--brand-maroon);
    font-weight: 900;
    font-size: 0.95rem;
    display: inline-block;
    padding: 8px 15px;
    border: 2px solid var(--brand-maroon);
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.phone-link:hover {
    background-color: var(--brand-maroon);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 480px) {
    body { padding: 0; }
    .main-wrapper { border-radius: 0; padding: 25px 15px; }
    .card-content { padding: 20px 30px; }
}