/*
Theme Name: Prix Photo Architecture
Theme URI: https://prixphotographiearchitecture.com
Author: Prix Photography Awards
Author URI: https://prixphotographiearchitecture.com
Description: A stunning, minimal WordPress theme designed for architectural photography awards. Features elegant typography, sophisticated color palette, and seamless integration with WooCommerce, Elementor, and Slider Revolution.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prix-photo-theme
Tags: photography, awards, minimal, elegant, block-theme, full-site-editing, woocommerce

Prix Photo Architecture is a modern block theme designed specifically for photography awards and competitions.
It features a minimal, prestigious design that puts the focus on stunning imagery while providing
all the functionality needed for running a professional photography competition.
*/

/* 
 * Global Styles
 * Additional styles are defined in theme.json
 */

:root {
    --color-background: #F8F7F4;
    --color-text: #222222;
    --color-primary: #C06C56;
    --color-secondary: #5A7284;
    --color-border: #DDDDDD;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Button Styles */
.wp-block-button__link,
.button,
.btn {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.wp-block-button__link:hover,
.button:hover,
.btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Spacing Utilities */
.section {
    padding: 5rem 0;
}

.section-lg {
    padding: 7rem 0;
}

.section-sm {
    padding: 3rem 0;
}

/* Text Alignment */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-lg {
        padding: 4rem 0;
    }
}

