/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Jan 16, 2025, 4:34:55 PM
    Author     : sawal
*/

/* Daftar Harga Layanan Hosting */
.pricing {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.pricing h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.pricing p {
    font-size: 18px;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 28px;
    color: #0066cc;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.pricing-card ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.pricing-card .cta-btn {
    background-color: #0066cc;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
}

.pricing-card .cta-btn:hover {
    background-color: #004a99;
}

/* Responsive Design untuk Daftar Harga */
@media (max-width: 768px) {
    .pricing-cards {
        justify-content: center;
    }

    .pricing-card {
        width: 80%;
        margin-bottom: 30px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .pricing-card .price {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .pricing-card .price {
        font-size: 20px;
    }

    .pricing-card .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/* Formulir Pemesanan Hosting */
.order-form {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.order-form h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.order-form p {
    font-size: 18px;
    margin-bottom: 40px;
}

.order-form form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.order-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.order-form label {
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

.order-form input, .order-form select, .order-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.order-form textarea {
    resize: vertical;
}

.order-form button {
    background-color: #0066cc;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.order-form button:hover {
    background-color: #004a99;
}

/* Responsive Design untuk Formulir */
@media (max-width: 768px) {
    .order-form form {
        padding: 20px;
    }
    
    .order-form h2 {
        font-size: 28px;
    }
    
    .order-form p {
        font-size: 16px;
    }
    
    .order-form button {
        font-size: 16px;
        padding: 12px 25px;
    }
}
/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-color: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero .cta-btn {
    background-color: #0066cc;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

.hero .cta-btn:hover {
    background-color: #004a99;
}

/* Services Section */
.services {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
}

.service-card {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 80%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero .cta-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}
