/* =========================
   OH MY PIXELS STYLE SHEET
   ========================= */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f5ff;
    color: #444;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scattered Bakery Background */

body::before {
    content: "🧁";
    position: fixed;
    top: 8%;
    left: 5%;
    font-size: 42px;
    opacity: 0.25;
    transform: rotate(-18deg);
    pointer-events: none;
}

body::after {
    content: "🍰";
    position: fixed;
    top: 25%;
    right: 6%;
    font-size: 38px;
    opacity: 0.25;
    transform: rotate(22deg);
    pointer-events: none;
}

header::before {
    content: "🍪";
    position: fixed;
    top: 45%;
    left: 10%;
    font-size: 34px;
    opacity: 0.22;
    transform: rotate(-30deg);
    pointer-events: none;
}

header::after {
    content: "🧁";
    position: fixed;
    top: 65%;
    right: 8%;
    font-size: 40px;
    opacity: 0.22;
    transform: rotate(25deg);
    pointer-events: none;
}

.container::before {
    content: "🎂";
    position: fixed;
    top: 75%;
    left: 18%;
    font-size: 42px;
    opacity: 0.22;
    transform: rotate(-15deg);
    pointer-events: none;
}

.container::after {
    content: "🍩";
    position: fixed;
    top: 35%;
    right: 20%;
    font-size: 34px;
    opacity: 0.22;
    transform: rotate(30deg);
    pointer-events: none;
}

/* Navigation */

nav {
    background: #ddd6fe;
    text-align: center;
    padding: 18px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

nav a {
    color: #5b21b6;
    text-decoration: none;
    margin: 0 12px;
    font-size: 18px;
    font-weight: bold;
}

nav a:hover {
    opacity: 0.8;
}

/* Header */

header {
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

.logo {
    width: 260px;
    max-width: 90%;
    border-radius: 25px;
}

header h1 {
    color: #8b5cf6;
    font-size: 3rem;
    margin: 20px 0 10px;
}

header p {
    font-size: 1.3rem;
    color: #666;
}

/* Layout */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    position: relative;
}

/* Hero Section */

.hero {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.hero h2 {
    color: #8b5cf6;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
}

/* Buttons */

.button {
    display: inline-block;
    background: #a78bfa;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    margin: 10px;
    font-weight: bold;
    transition: 0.3s;
}

.button:hover {
    background: #8b5cf6;
}

/* Cards */

.card-grid,
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.card,
.price-box,
.contact-box,
.review-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h3,
.price-box h3,
.review-card h4 {
    color: #8b5cf6;
}

.card strong {
    display: block;
    margin-top: 15px;
    color: #8b5cf6;
}

/* Sections */

section {
    margin-bottom: 50px;
}

section h2 {
    text-align: center;
    color: #8b5cf6;
    margin-bottom: 25px;
}

/* Gallery */

.gallery-section {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

/* Footer */

footer {
    background: #ddd6fe;
    color: #5b21b6;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-weight: bold;
}

/* Mobile */

@media (max-width: 768px) {

    nav a {
        font-size: 16px;
        margin: 0 6px;
    }

    header h1 {
        font-size: 2.3rem;
    }

    header p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 25px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .logo {
        width: 220px;
    }
}
/* Social Footer */

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.facebook-link {
    background: #b9a4ff;
    color: white;
}

.instagram-link {
    background: #9f8cff;
    color: white;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.social-links i {
    font-size: 20px;
}
