/* MAIN STYLES FOR LUXURY WATCH TEMPLATE */

/* Root Variables */
:root {
    /* Primary Colors */
    --primary-1: #e8d9c5; /* Soft champagne */
    --primary-2: #c0a080; /* Muted gold */
    --primary-3: #604c3d; /* Walnut brown */
    --primary-4: #303034; /* Charcoal black */
    --primary-5: #b36b5b; /* Copper accent */
    
    /* Shades */
    --primary-1-light: #f5efe7;
    --primary-1-dark: #d8c9b5;
    --primary-2-light: #d0b090;
    --primary-2-dark: #a08060;
    --primary-3-light: #705c4d;
    --primary-3-dark: #503c2d;
    --primary-4-light: #404044;
    --primary-4-dark: #202024;
    --primary-5-light: #c37b6b;
    --primary-5-dark: #935b4b;
    
    /* General */
    --body-bg: #faf8f5;
    --text-color: #303034;
    --border-radius: 4px;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--body-bg);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-4);
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

h4 {
    font-size: 1.8rem;
}

h5 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-3);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-5);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-2);
    margin-bottom: 10px;
    display: block;
}

.title {
    font-size: 2.8rem;
    position: relative;
    margin-bottom: 20px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--primary-3-light);
}

.btn {
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-3);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-3-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--primary-2);
    color: var(--primary-4-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-2-dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-3);
    color: var(--primary-3);
}

.btn-outline:hover {
    background-color: var(--primary-3);
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-4-dark);
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-5);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 70%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* About Section */
.about-section {
    position: relative;
}

.about-content {
    padding: 50px 0;
}

.about-feature {
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 1.8rem;
    background-color: var(--primary-1);
    color: var(--primary-3);
    border-radius: 50%;
    margin-bottom: 20px;
}

.about-feature h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    background-color: var(--primary-1-light);
}

.service-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-item:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-price {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-2-light);
    color: var(--primary-4-dark);
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-2);
}

/* Features Section */
.feature-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 2.5rem;
    background-color: var(--primary-1);
    color: var(--primary-3);
    border-radius: 50%;
    margin: 0 auto 30px;
}

.feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Pricing Plan Section */
.pricing-section {
    background-color: var(--primary-1-light);
}

.pricing-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    padding-bottom: 40px;
}

.pricing-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.pricing-header {
    padding: 30px;
    background-color: var(--primary-3);
    color: #fff;
}

.pricing-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-content {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}

.pricing-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-2);
}

/* Team Section */
.team-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.team-img {
    height: 350px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-item:hover .team-img img {
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
    text-align: center;
}

.team-content h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-2);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--primary-1-light);
}

.review-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.review-text::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-2);
    font-size: 1.2rem;
}

.review-author {
    font-weight: 600;
    color: var(--primary-3);
}

/* Core Info Section */
.coreinfo-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.coreinfo-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.coreinfo-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 2rem;
    background-color: var(--primary-1);
    color: var(--primary-3);
    border-radius: 50%;
    margin: 0 auto 30px;
}

.coreinfo-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-form {
    background-color: #fff;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-control {
    height: 50px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 0 20px;
    color: var(--text-color);
    margin-bottom: 20px;
}

textarea.form-control {
    height: 150px;
    padding: 20px;
}

.contact-info {
    background-color: var(--primary-3);
    color: #fff;
    padding: 50px;
    border-radius: var(--border-radius);
    height: 100%;
}

.contact-info-item {
    margin-bottom: 30px;
    position: relative;
    padding-left: 70px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-info-text h5 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-info-text p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Blog Section */
.blog-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.blog-img {
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-item:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.blog-excerpt {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-4-dark);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 30px;
    opacity: 0.8;
}

.footer-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-5);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-5);
    padding-left: 5px;
}

.footer-contact-item {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.footer-contact-icon {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-5);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    animation: fadeInLeft 0.5s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    animation: fadeInRight 0.5s ease forwards;
}

/* Decorative Elements */
.shape {
    position: absolute;
    z-index: -1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-color: var(--primary-1-light);
    border-radius: 50%;
    opacity: 0.5;
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background-color: var(--primary-2-light);
    border-radius: 50%;
    opacity: 0.3;
} 