@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --bg1: ##f8f4f9; /* Light gray background for the body */
    --bg2: #f8f4f9; /* Pure white background for sections */
    --primary: #ff6f61; /* Vibrant coral color */
    --secondary: #00a8ff; /* Bright blue color */
    --text-dark: #333; /* Dark text color for better readability */
    --text-light: #666; /* Light gray text color for secondary content */
    --border: #ddd; /* Light border color */
    --shadow: rgba(0, 0, 0, 0.1); /* Light shadow color */
    --footer-bg: #1c1c1c; /* Dark footer background */
    --footer-text: #f2f2f2; /* Light footer text color */
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg1);
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover, a:focus {
    color: var(--primary);
    text-decoration: underline;
}

.link-more {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
}

.link-more .icon {
    transition: transform 0.3s ease;
}

.link-more:hover .icon {
    transform: translateX(8px);
}

img {
    width: 100%;
    border-radius: 8px;
}

section {
    padding: 80px 0;
}

/* INTRO */
.intro {
    margin-bottom: 60px;
    text-align: center;
}

.intro h1 {
    margin: 16px 0;
}

.intro h6 {
    color: var(--primary);
}

.intro p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.cta-btns {
    margin-top: 60px;
    text-align: center;
}

/* NAVBAR */
.navbar {
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--text-dark);
}

/* HERO */
#hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/mycover2.png);
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

#hero p {
    color: #fff;
    margin: 24px 0;
}

/* BTN */
.btn {
    padding: 16px 36px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-size: 16px;
}

.btn-brand {
    background-color: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
}

.btn-brand:hover {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-brand {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-brand:hover {
    background-color: var(--primary);
    color: #fff;
}


/* ABOUT */
#aboutus {
    position: relative;
    border-top: 1px solid var(--border);
    padding: 60px 0;
    background-color: var(--bg2);
}

#aboutus::after {
    content: "";
    width: 50%;
    height: 100%;
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#aboutus h6 {
    color: var(--primary);
    margin-bottom: 16px;
}

#aboutus h1 {
    margin-bottom: 25px;
}

#shop {
    background-color: #f9f9f9; /* Light background for contrast */
    padding: 50px 0;
    text-align: center;
    border-radius: 10px;
}

#shop a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff6f61; /* Stylish color for the button */
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#shop a:hover {
    background-color: #ff4f41; /* Darker shade on hover */
    transform: translateY(-3px); /* Slight lift on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#shop a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.5); /* Focus ring */
}

#shop .container {
    max-width: 700px;
    margin: 0 auto;
}



/* SERVICE */
#services {
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 60px 0;
}

#services .content {
    padding: 32px;
}

#services p {
    margin: 16px 0;
}

.h5 {
    color: var(--primary);
}

.btcol {
    margin-top: 65px;
    border-radius: 50%;
}

.card-body {
    border-radius: 8px;
}

/* CONTACT */
#contactus {
    background-color: #f9f9f9;
    border-top: 1px solid var(--border);
    padding: 60px 0;
}

.openhr {
    font-size: 20px;
    text-align: center;
}

p {
    font-size: 18px;
}

.open {
    color: var(--primary);
}

.find h6 {
   color: var(--primary);
   margin-bottom: 50px;
}

.find h1 {
    margin: 16px 0;
}

/* FOOTER */
footer {
    padding: 60px 0;
    background-color: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid var(--border);
}

footer .social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

footer .social-links a {
    width: 60px;
    height: 60px;
    background-color: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 50%;
    color: var(--text-dark);
    transition: background-color 0.3s ease, color 0.3s ease;
}

footer .social-links a:hover {
    background-color: var(--primary);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
}
