﻿:root {
    --gold: #FFC30B;
    --pink: #E31468;
    --aqua: #00B4D8;
    --light: #F5F5F5;
}

/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Body */

body {
    background: var(--light);
    color: black;
    line-height: 1.6;
}

/* Header */

header {
    background: white;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    /* Logo */

    header h2 {
        color: black;
    }

/* Navigation */

nav a {
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    color: black;
    transition: 0.3s;
}

    /* Hover effect */

    nav a:hover {
        color: var(--pink);
    }

    /* Active / Click */

    nav a:active {
        color: var(--aqua);
    }

/* Hero */

.hero {
    padding: 80px 10%;
}

/* Content */

.container {
    padding: 60px 10%;
}

/* Card layout */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

/* Card */

.card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

    /* Icons */

    .card i {
        font-size: 30px;
        color: var(--gold);
        margin-bottom: 15px;
    }

/* Buttons */

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    background: var(--gold);
    cursor: pointer;
    font-weight: 600;
}

    /* Button hover */

    .btn:hover {
        background: var(--pink);
        color: white;
    }

    /* Button click */

    .btn:active {
        background: var(--aqua);
        color: white;
    }

/* Form */

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* Footer */

footer {
    margin-top: 60px;
    background: white;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.icon-gold {
    color: #FFC30B; /* Honey Gold */
}

.designer-link {
    color: #E31468;
    text-decoration: none;
    font-weight: bold;
}

    .designer-link:hover {
        color: #00B4D8;
    }

.brand-name {
    color: #FFC30B;
    font-weight: bold;
}

.contact-info {
    margin-top: 25px;
    font-size: 18px;
}

    .contact-info p {
        margin-bottom: 12px;
    }

    .contact-info i {
        color: #FFC30B;
        margin-right: 10px;
    }

    .contact-info a {
        color: black;
        text-decoration: none;
        font-weight: 600;
    }

        .contact-info a:hover {
            color: #E31468;
        }

/* Logo image styling */
.logo-img {
    height: 60px; /* sets a normal header logo size */
    width: auto; /* maintains the original aspect ratio */
    display: block;
}

/* Optional: subtle hover effect */
.logo-link:hover .logo-img {
    opacity: 0.85;
    transition: 0.3s;
}

/* Illustration image like Font Awesome example */
.illustration-img {
    width: 400px; /* sets the width similar to FA illustration */
    height: 400px; /* keep it square */
    display: block;
    margin: 0 auto; /* center horizontally */
}

@media screen and (max-width: 768px) {
    .illustration-img {
        width: 90%; /* scales down proportionally */
        height: auto; /* keeps aspect ratio */
    }
}

/* Carousel container */
.carousel-container {
    position: relative;
    width: 420px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Slide wrapper */
.fade-slide .slide {
    display: none;
    position: relative;
}

    /* Show first slide by default */
    .fade-slide .slide.active {
        display: block;
        animation: fadeEffect 1s;
    }

/* Image */
.carousel-img {
    width: 400px;
    height: 400px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

/* Captions */
.caption {
    text-align: center;
    font-size: 16px;
    color: #2DA048;
    margin-top: 8px;
}

/* Fade animation */
@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
    transition: background 0.3s;
}

    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.7);
    }

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots */
.dots-container {
    text-align: center;
    margin-top: 12px;
}

.dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #FFC30B; /* Honey Gold */
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

    .dot.active {
        background-color: #E31468; /* Hot Pink for active slide */
    }

/* Responsive */
@media screen and (max-width: 480px) {
    .carousel-container {
        width: 90%;
    }

    .carousel-img {
        width: 100%;
        height: auto;
    }
}

/* Products page background */
.products-page {
    background-image: url('../images/logo_b.jpeg');
    background-size: cover; /* fills screen */
    background-position: center; /* centers image */
    background-repeat: no-repeat;
    background-attachment: fixed; /* optional parallax */
    min-height: 100vh;
    image-rendering: auto; /* ensures proper rendering */
}

/* Optional overlay for text readability */
.products-container {
    background-color: rgba(245, 245, 245, 0.85);
    padding: 30px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
}