/* ===================================
   BERYCAFE.COM CUSTOM STYLES
   Premium domain for sale site
   Food & Beverage Industry Theme
   =================================== */

/* Color Variables - Berry & Café Theme */
:root {
    --berry-red: #DC143C;
    --coffee-brown: #6F4E37;
    --coffee-light: #8B4513;
    --fresh-green: #228B22;
    --light-green: #90EE90;
    --dark-purple: #8B008B;
    --sale-red: #ff4757;
    --primary-dark: #34495e;
    --success-green: #27ae60;
    --info-blue: #3498db;
    --warning-orange: #f39c12;
    --gold: #f39c12;
    --light-bg: #f8f9fa;
    --medium-bg: #f1f5f9;
}

/* Body Background */
body {
    background: var(--light-bg);
    color: #1a1a1a;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.0rem;
}

/* List Markers */
ul li::marker {
    color: var(--berry-red);
}

/* Navigation Menu - 20% Larger */
.navbar .dropmenu a,
.navbar .overlay-menu a {
    font-size: 0.96rem; /* 20% increase from 0.8rem */
}

/* Icon Spacing */
.fa, .fa-solid {
    margin-right: 0.5rem;
}

/* Heading Colors */
h2 {
    color: var(--coffee-brown);
}

h3 {
    color: var(--coffee-light);
}

/* Link Styling */
a {
    color: var(--berry-red);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--coffee-brown);
}

/* ===================================
   ICON COLORS - FOOD & BEVERAGE THEME
   =================================== */

/* Berry and Food Icons */
.fa-apple-whole,
.fa-seedling,
.fa-leaf,
.fa-grapes {
    color: var(--berry-red);
}

/* Coffee and Café Icons */
.fa-mug-hot,
.fa-coffee,
.fa-cake-candles,
.fa-bread-slice {
    color: var(--coffee-brown);
}

/* Store and Business Icons */
.fa-store,
.fa-briefcase,
.fa-building,
.fa-rocket {
    color: var(--primary-dark);
}

/* Success and Money Icons */
.fa-dollar-sign,
.fa-check-circle,
.fa-circle-check,
.fa-medal {
    color: var(--success-green);
}

/* Info and Feature Icons */
.fa-lightbulb,
.fa-star,
.fa-gem,
.fa-crown {
    color: var(--info-blue);
}

/* Warning and Alert Icons */
.fa-fire,
.fa-exclamation-triangle,
.fa-megaphone,
.fa-tags {
    color: var(--warning-orange);
}

/* Premium and Gold Icons */
.fa-certificate,
.fa-trophy {
    color: var(--gold);
}

/* Sale Badge Icons */
.fa-tag,
.fa-shopping-cart {
    color: var(--sale-red);
}

/* ===================================
   FOR SALE BANNERS & BADGES
   =================================== */

.for-sale-badge {
    background: linear-gradient(135deg, var(--sale-red) 0%, #e84118 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 1rem;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }
}

.for-sale-banner {
    background: linear-gradient(135deg, var(--berry-red) 0%, var(--dark-purple) 100%);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.for-sale-banner h2 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.for-sale-banner .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 1rem 0;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    animation: price-pop 3s ease-in-out infinite;
}

@keyframes price-pop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.for-sale-banner .tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===================================
   PRICING HIGHLIGHT BOX
   =================================== */

.price-highlight {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border: 2px solid var(--berry-red);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2);
}

.price-highlight h3 {
    color: var(--sale-red);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-highlight p {
    font-size: 1.1rem;
    margin: 0.75rem 0;
    line-height: 1.8;
}

/* ===================================
   DOMAIN TAG
   =================================== */

.domain-tag {
    background: linear-gradient(135deg, var(--coffee-brown) 0%, var(--coffee-light) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(111, 78, 55, 0.3);
}

/* ===================================
   BUTTONS - LARGER SIZE
   =================================== */

.button,
a.button {
    padding: 1.25rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1.8;
    min-height: 60px;
}

.button:hover,
a.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ===================================
   HOMEPAGE HERO SECTION
   =================================== */

.title-center.title-h1h2 h1:first-of-type {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--coffee-brown);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.title-center.title-h1h2 h1:first-of-type::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--berry-red) 0%, var(--dark-purple) 100%);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.title-center.title-h1h2 h1:first-of-type + h2 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2.5rem;
}

/* ===================================
   ICON LISTS - REMOVE BULLETS
   =================================== */

/* Remove list bullets when list item contains an icon */
ul:has(li > .fa),
ul:has(li > .fa-solid) {
    list-style-type: none;
    padding-left: 0;
}

ul li:has(> .fa),
ul li:has(> .fa-solid) {
    list-style-type: none;
    padding-left: 0;
}

/* Alternative: Direct li with icon child */
li:has(.fa:first-child),
li:has(.fa-solid:first-child) {
    list-style-type: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Text Colors */
.text-primary { color: var(--berry-red); }
.text-secondary { color: var(--coffee-brown); }
.text-success { color: var(--success-green); }
.text-warning { color: var(--warning-orange); }
.text-info { color: var(--info-blue); }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Font Weight */
.fw-bold { font-weight: 700; }
.fw-normal { font-weight: 400; }

/* Spacing - Margins */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Spacing - Padding */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 960px) {
    .title-center.title-h1h2 h1:first-of-type {
        font-size: 2.25rem;
    }

    .for-sale-banner .price {
        font-size: 2.5rem;
    }

    .button,
    a.button {
        font-size: 1.1rem;
        padding: 1rem 1.75rem;
    }
}

@media (max-width: 600px) {
    .title-center.title-h1h2 h1:first-of-type {
        font-size: 1.75rem;
        margin-top: 2rem;
    }

    .for-sale-banner .price {
        font-size: 2rem;
    }

    .for-sale-badge {
        display: block;
        margin-left: 0;
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .button,
    a.button {
        width: 100%;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ===================================
   FOOTER
   =================================== */

#footer {
    font-size: 0.8rem;
    color: #6c757d;
}
