/*
Theme Name: Ocean Prime
Author: Turab Haider
Version: 1.0
*/


/* =========================
   Global Reset
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   Body Styling
========================= */
body {
    font-family: Arial, sans-serif;
    background: #fff;
}


/* =========================
   Layout Container
========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================
   TOP SALE BAR
========================= */
.top-sale-bar {
    background: #0c1220;
    color: #fff;
    padding: 15px 0;
}

.sale-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Section */
.sale-left {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 16px;
}

.sale-left strong {
    font-size: 20px;
}

/* Highlight text */
.highlight {
    color: #ff2d2d;
    font-weight: bold;
}

/* Right Section */
.sale-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 15px;
}

.countdown div {
    text-align: center;
}

.countdown span {
    font-size: 18px;
    font-weight: bold;
    display: block;
}

.countdown small {
    font-size: 12px;
    opacity: 0.7;
}

/* Button */
.sale-btn {
    background: #fff;
    color: #000;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.sale-btn:hover {
    background: #ff2d2d;
    color: #fff;
}


/* =========================
   HEADER SECTION
========================= */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.site-logo a {
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    color: #111;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    font-weight: 500;
    color: #111;
    transition: 0.3s;
}

.main-navigation a:hover {
    color: #ff2d2d;
}


/* =========================
   MAIN CONTENT
========================= */
main {
    padding: 40px;
    min-height: 60vh;
}


/* =========================
   FOOTER
========================= */
footer {
    background: #f2f2f2;
    padding: 20px;
    text-align: center;
}


/* =========================
   SERVICES SECTION
========================= */
.services-wrapper {
    padding: 60px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    border: 1px solid #eee;
    padding: 20px;
    background: #fff;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.service-card h2 {
    margin-bottom: 10px;
}

.service-price {
    font-size: 18px;
    font-weight: bold;
    color: #0a7d3b;
    margin: 10px 0;
}

.service-excerpt {
    margin: 10px 0;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    font-weight: bold;
    color: #111;
}
